Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
File Manager
/
FusionChartsFree
/
Code
/
JSP
/
ArrayExample
:
MultiSeries.jsp
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<HTML> <HEAD> <TITLE>FusionCharts Free - Array Example using Multi Series Column 3D Chart</TITLE> <% /*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. */ %> <SCRIPT LANGUAGE="Javascript" SRC="../../FusionCharts/FusionCharts.js"></SCRIPT> <style type="text/css"> <!-- body { font-family: Arial, Helvetica, sans-serif; font-size: 12px; } --> </style> </HEAD> <BODY> <CENTER> <h2><a href="http://www.fusioncharts.com" target="_blank">FusionCharts Free</a> Examples</h2> <h4>Plotting multi-series chart from data contained in Array.</h4> <% /*In this example, we plot a multi series chart from data contained in an array. The array will have three columns - first one for data label (product) and the next two for data values. The first data value column would store sales information for current year and the second one for previous year. Let's store the sales data for 6 products in our array. We also store the name of products. */ String[][] arrData = new String[6][3]; //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"; //Store sales data for previous year arrData[0][2]= "547300"; arrData[1][2] = "584500"; arrData[2][2]= "754000"; arrData[3][2]= "456300"; arrData[4][2]= "754500"; arrData[5][2]= "437600"; String strXML = "<graph caption='Sales by Product' numberPrefix='$' formatNumberScale='1' decimalPrecision='0' >"; //Initialize <categories> element - necessary to generate a multi-series chart String strCategories = "<categories>"; //Initiate <dataset> elements String strDataCurr = "<dataset seriesName='Current Year' color='AFD8F8'>"; String strDataPrev = "<dataset seriesName='Previous Year' color='F6BD0F'>"; //Iterate through the data for(int i=0;i<arrData.length;i++){ //Append <category name='...' /> to strCategories strCategories = strCategories + "<category name='" + arrData[i][0] + "' />"; //Add <set value='...' /> to both the datasets strDataCurr = strDataCurr + "<set value='" + arrData[i][1] + "' />"; strDataPrev = strDataPrev + "<set value='" + arrData[i][2] + "' />"; } //Close <categories> element strCategories = strCategories + "</categories>"; //Close <dataset> elements strDataCurr = strDataCurr + "</dataset>"; strDataPrev = strDataPrev + "</dataset>"; //Assemble the entire XML now strXML = strXML + strCategories + strDataCurr + strDataPrev + "</graph>"; //Create the chart - MS Column 3D Chart with data contained in strXML %> <jsp:include page="../Includes/FusionChartsRenderer.jsp" flush="true"> <jsp:param name="chartSWF" value="../../FusionCharts/FCF_MSColumn3D.swf" /> <jsp:param name="strURL" value="" /> <jsp:param name="strXML" value="<%=strXML %>" /> <jsp:param name="chartId" value="productSales" /> <jsp:param name="chartWidth" value="600" /> <jsp:param name="chartHeight" value="300" /> <jsp:param name="debugMode" value="false" /> <jsp:param name="registerWithJS" value="false" /> </jsp:include> <BR> <BR> <a href='../NoChart.html' target="_blank">Unable to see the chart above?</a><BR><H5 ><a href='../default.htm'>« Back to list of examples</a></h5> </CENTER> </BODY> </HTML>