Fast and easy PHP / Javascript graphics

I am looking for a simple and easy to integrate graph to display sales statistics in a web application.

Basically I will put his name of the month and the number of sales this month. I would like it to display a graph showing statistics.

What is the best solution for this? I would prefer something attractive, but still easy to integrate

+5
source share
8 answers

Google Charts . There are several PHP wrappers for this:

+7
+4

jQuery visualize, , html, .

jQuery

+2

amCharts (http://amcharts.com/). (, , ), .

+1

, HTML. , .

, .

, :

<html>
  <body>
    <div width="100%">
      <div style="float:left; width:70px">Jan</div>
      <div style="background: #0A0; width: 300px; margin-left:70px" >$300</div>
    </div>
    <div width="100%">
      <div style="float:left; width:70px">Feb</div>
      <div style="background: #A00; width: 122px; margin-left:70px" >$122</div>
    </div>
    <div width="100%">
      <div style="float:left; width:70px">Mar</div>
      <div style="background: #00A; width: 421px; margin-left:70px" >$421</div>
    </div>
    <div width="100%">
      <div style="float:left; width:70px">Apr</div>
      <div style="background: #0AA; width: 17px; margin-left:70px" >$17</div>
    </div>
  </body>
</html>
+1
0

Highcharts, , .

, php:

http://aloiroberto.wordpress.com/2010/02/04/highcharts-php-library/

In addition, Google Chart or Open Flash Card are specific features (the latter will require Flash).

0
source

All Articles