FusionCharts PHP Class API > Grid Chart | ||||||||||||||||
Let's create a grid chart that will visually depict the Weekly Sales of a fictitious shop. The sample data that we intend to plot can be tabularized as under: |
||||||||||||||||
| ||||||||||||||||
Let's see how to use FusionCharts PHP Class to plot this data into a Grid chart: | ||||||||||||||||
<?php # Include FusionCharts PHP Class include('../Class/FusionCharts_Gen.php'); # Create SSGrid chart Object $FC = new FusionCharts("grid","300","200"); # set the relative path of the SWF file $FC->setSWFPath("../FusionCharts/"); # set grid font and font size $FC->setGridParams("baseFont=verdana;baseFontSize=12"); # Set grid value Percent on $FC->setGridParams("showPercentValues=1"); # Set alternate row back ground color $FC->setGridParams("alternateRowBgColor=EAECEF"); # number item per page $FC->setGridParams("numberItemsPerPage=4"); # Add grid values and category names $FC->addChartData("40800","label=Week 1"); $FC->addChartData("31400","label=Week 2"); $FC->addChartData("26700","label=Week 3"); $FC->addChartData("54400","label=Week 4"); $FC->addChartData("88544","label=Week 5"); $FC->addChartData("22544","label=Week 6"); $FC->addChartData("65548","label=Week 7"); ?> <html> <head> <title>SSGrid with PHP Class</title> <script language='javascript' src='../FusionCharts/FusionCharts.js'></script> </head> <body> <?php # Render Grid $FC->renderChart(); ?> </body> </html> |
||||||||||||||||
Let's analyze the steps involved in the above code:
|
||||||||||||||||
Here is the Grid chart displaying the first page with four data items that our FusionCharts PHP Class renders: | ||||||||||||||||
![]() |
||||||||||||||||
To see the remaining data items that reside on the next page, we have to click on the arrow(button) lying at the bottom of first page. Then, we will see the next page as shown in the image below : | ||||||||||||||||
![]() |