Your Ad Here

Home » Graphs or Charts, PHP Code »

4

In this post i would like to explain about how to create php charts using the Google API key. It is very simple to implement with few files.I have explained with demo.

The chart like this one:

chart2

  

To set the chart :

1
2
3
4
5
6
7
8
// Set graph data
$data = array(
'PHP' => 50,
'ROR' => 15,
'.NET' => 20,
'Designers' => 25

);

To set the colors:

1
2
3
4
5
6
// Set graph colors
$color = array(
'#99C754',
'#54C7C5',
'#999999',
);

Supported Graphs:

1)  Pie Charts

2) Bar graph

3) Timeline Graph

Just put the following php code where we have to place the chart.

1
2
3
4
5
6
7
8
9
10
11
/* # Chart 1 # */
echo '<h2>Pie chart</h2>';
$chart->setChartAttrs( array(
'type' => 'pie',
'title' => 'IT Market 2008 ',
'data' => $data,
'size' => array( 400, 300 ),
'color' => $color
));
// Print chart
echo $chart;

It displays the chart.

We can manage the occupation from the “$data”  feild.

chart11

chart21

It is very nice to implement in the our sites.


You may like these posts

    Facebook type notifications Using PHP and  JqueryHow to get the php data grid?Multiple Upload files using php and javascriptUnzip file using php code

 

4 Comments

  1. Andre says:

    This is very useful, thank you!

  2. chris says:

    how to do horizontal bar graph?

  3. anil2u says:

    Hello Chris,

    There is another option called set the variable to $dataMultiple ,
    and called that variable at

    $chart->setChartAttrs( array(
    ‘type’ => ‘bar-horizontal’,
    ‘data’ => $dataMultiple,
    .
    .
    ));
    Then it will give the horizontal graph also.

    Thank you.

  4. Suresh says:

    Wow!!!, it’s really nice…

Leave a Reply