Using FusionCharts PHP Class > Basic Examples |
FusionCharts can effectively be used with PHP to plot dynamic data-driven charts. With FusionCharts PHP Class chart rendering becomes even easier. Let's see how to make use of FusionCharts PHP Class functions and create charts in few easy steps. We'll cover the following examples here:
Let's quickly see each of them. Before you proceed with the contents in this page, we strictly recommend you to please go through the section "How FusionCharts works?". |
All code discussed here is present in Download Package > Code > PHPClass > BasicExample folder. |
Setting up the charts for use |
In our code, we've used the charts and FusionCharts.js contained in Download Package > Code > FusionCharts folder. We have kept FusionCharts_Gen.php and FusionCharts.php in Download Package > Code > PHPClass > Includes folder. When you run your samples, you need to make sure that all the files are in proper location. |
Creating a simple chart |
Let's now get to building our first chart. In this example, we'll create a "Monthly Unit Sales" chart. |
<?php <BODY> <?php # Setting Relative Path of chart swf file. # Set chart attributes ?> |
What we did in this program? |
|
Please go through FusionCharts PHP Class API Reference section to know more about the functions used in the above code. |
When you now run this page, you'll see a chart like the one below. If you do not see a chart like the one below, please follow the steps listed in Debugging your Charts section of this documentation. |
So, you just saw how simple it is to create a chart using FusionCharts PHP Class functions. |
Creating a chart with external XML file |
Now, we will create the same chart in a different way. Here, we will be using two different programs. One program creates the chart XML using FusionCharts PHP Class and the other uses this XML to render the chart using dataURL method. Code written inside Data.php file creates the XML and SimpleChart.php file uses the XML to render chart. |
All code discussed here is present in Download Package > Code > PHPClass > BasicExample folder and Download Package > Code > PHPClass > BasicExample > Data folder. |
Let's consider the code in Data.php file first. This code is similar like the code in the above example; the only difference is it does not render the chart but streams XML to SimpleChart.php file. |
<?php <?php # Set Relative Path of chart swf file. # Set chart attributes |
What we did here: |
|
Let's now look at SimpleChart.php function: |
<?php |
Steps involved in this function: |
|
Note: The renderChart() function used in this code is not the same with the one we used in the previous example, though they bear same name. This is FusionCharts PHP chart embedding function; please go through Using with PHP > Basic Examples to know more about it. |
Here is the output. As you can see, the same chart has been created but in a different way. |