FusionCharts PHP Class API > Creating Multi-series Chart | ||||||||||||||||||
To plot multiple datasets we use Multiseries charts. Consider the Weekly Sales chart for two consecutive months. Here, for each week, we have two sets of data coming from current month and previous month. Let's examine the following data for a multi-series chart. |
||||||||||||||||||
|
||||||||||||||||||
![]() |
||||||||||||||||||
Before you go further with this page, we recommend you to please see the previous page Creating First Chart as we start off from concepts explained in that page. |
||||||||||||||||||
Let's go through the code that builds this chart: | ||||||||||||||||||
<?php # Include FusionCharts PHP Class include('../Class/FusionCharts_Gen.php'); # Create Multiseries Column3D chart object using FusionCharts PHP Class $FC = new FusionCharts("MSColumn3D","350","300"); # Set the relative path of the SWF file $FC->setSWFPath("../FusionCharts/"); # Store chart attributes in a variable $strParam="caption=Weekly Sales;subcaption=Comparison;xAxisName=Week;yAxisName=Revenue;numberPrefix=$;decimalPrecision=0"; # Set chart attributes $FC->setChartParams($strParam); # Add category names $FC->addCategory("Week 1"); $FC->addCategory("Week 2"); $FC->addCategory("Week 3"); $FC->addCategory("Week 4"); # Create a new dataset $FC->addDataset("This Month"); # Add chart values for the above dataset $FC->addChartData("40800"); $FC->addChartData("31400"); $FC->addChartData("26700"); $FC->addChartData("54400"); # Create second dataset $FC->addDataset("Previous Month"); # Add chart values for the second dataset $FC->addChartData("38300"); $FC->addChartData("28400"); $FC->addChartData("15700"); $FC->addChartData("48100"); ?> <html> <head> <title>First Chart Using FusionCharts PHP Class</title> <script language='javascript' src='../FusionCharts/FusionCharts.js'></script> </head> <body> <?php # Render Chart $FC->renderChart(); ?> </body> </html> |
||||||||||||||||||
As you can see in the above code, we're doing the following:
|
||||||||||||||||||
Please go through FusionCharts PHP Class API Reference section to know more about the functions used in the above code. | ||||||||||||||||||
And the Multi-series chart is ready! |
||||||||||||||||||
![]() |