Using FusionCharts with ColdFusion > Charting Data from an Array |
In this section, we'll show you how to use FusionCharts and CFM to plot charts from data contained in CFM arrays. We'll cover the following examples here:
Before you go further with this page, we recommend you to please see the previous section "Basic Examples" as we start off from concepts explained in that page. The code examples contained in this page are present in Download Package > Code > CFM > ArrayExample folder. |
Creating a single series chart from data contained in arrays |
The code to create a single series chart is contained in SingleSeries.cfm and can be listed as under: |
<HTML> <!--- Now, we need to convert this data into XML. We convert using string concatenation. ---> |
In the above example, we first include FusionCharts.js file to enable us embed the chart using JavaScript. We also include FusionCharts.cfm to help us easily embed the charts. Thereafter, we define a CFM array arrData to store sales data for 6 different products. The array has two columns - first one for data label and the next one for data values. We define a variable strXML to store the entire XML data. To build the XML, we iterate through the array and using string concatenation. Finally, we render the chart using renderChart() function and pass strXML as dataXML. When you view the chart, you'll see a chart as under: |
![]() |
Creating a multi-series chart from data contained in arrays |
Let us now create a multi-series chart from data contained in arrays. We create a file MultiSeries.cfm with the following code: |
<HTML> <cfset strXML = "<chart caption='Sales by Product' numberPrefix='$' formatNumberScale='1' rotateValues='1' placeValuesInside='1' decimals='0' >"> |
In the above example, we first include FusionCharts.js file to enable us embed the chart using JavaScript. We also include FusionCharts.cfm to help us easily embed the charts. Thereafter, we define a CFM array arrData to store sales data for 6 different products. The array has three columns - first one for data label (product) and the next two for data values. The first data value column would store sales information We define a variable strXML to store the entire XML data. We also define strCategories, strDataCurr and strDataPrev variables to store XML data for categories elements, current year's dataset and previous year's dataset respectively. To build the XML, we iterate through the array and using string concatenation. We concatenate the entire XML finally in strXML. Finally, we render the chart using renderChart() function and pass strXML as dataXML. When you view the chart, you'll see a chart as shown below: |
![]() |
In Download Package > Code > CFM > ArrayExample, we've more example codes to create Stacked and Combination Charts too, which have not been explained here, as they're similar in concept. You can directly see the code if you want to. |