%@ page import="com.fusioncharts.FusionChartsHelper"%>
FusionCharts Free - Array Example using Single Series Column
3D Chart
<%
/*You need to include the following JS file, if you intend to embed the chart using JavaScript.
Embedding using JavaScripts avoids the "Click to Activate..." issue in Internet Explorer
When you make your own charts, make sure that the path to this JS file is correct. Else, you would get JavaScript errors.
*/
%>
Plotting single series chart from data contained in Array.
<%
/*In this example, we plot a single series chart from data contained
in an array. The array will have two columns - first one for data label
and the next one for data values.
Let's store the sales data for 6 products in our array. We also store
the name of products. */
String[][] arrData = new String[6][2];
//Store Name of Products
arrData[0][0] = "Product A";
arrData[1][0] = "Product B";
arrData[2][0] = "Product C";
arrData[3][0] = "Product D";
arrData[4][0] = "Product E";
arrData[5][0] = "Product F";
//Store sales data
arrData[0][1] = "567500";
arrData[1][1] = "815300";
arrData[2][1] = "556800";
arrData[3][1]= "734500";
arrData[4][1] = "676800";
arrData[5][1] = "648500";
// we will use the FusionChartsHelper class for colors
FusionChartsHelper colorHelper= new FusionChartsHelper();
//Now, we need to convert this data into XML. We convert using string concatenation.
String strXML;
int i=0;
//Initialize element
strXML = "";
//Convert data to XML and append
for(i=0;i";
}
//Close element
strXML = strXML + "";
//Create the chart - Column 3D Chart with data contained in strXML
%>
Unable to see the chart
above?