FusionCharts can effectively be used with JSP to plot dynamic data-driven charts. In this example, we'll show a few basic examples to help you get started.

We'll cover the following examples here:

  1. We'll use FusionCharts in JSP with a pre-built Data.xml (which contains data to plot)
  2. We'll then change the above chart into a single page chart using dataXML method.
  3. Finally, we'll use FusionCharts JavaScript class to embed the chart.

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 > JSP > BasicExample folder.
 
Setting up the charts for use
In our code, we've used the charts contained in Download Package > Code > FusionCharts folder. When you run your samples, you need to make sure that the SWF files are in proper location.
 
Plotting a chart from data contained in Data.xml

Let's now get to building our first example. In this example, we'll create a "Monthly Unit Sales" chart using dataURL method. For a start, we'll hard code our XML data in a physical XML document Data.xml and then utilize it in our chart contained in an JSP Page (BasicChart.jsp).

Let's first have a look at the XML Data document:

<chart caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units' showValues='0' formatNumberScale='0' showBorder='1'>
    <set label='Jan' value='462' />
    <set label='Feb' value='857' />
    <set label='Mar' value='671' />
    <set label='Apr' value='494' />
    <set label='May' value='761' />
    <set label='Jun' value='960' />
    <set label='Jul' value='629' />
    <set label='Aug' value='622' />
    <set label='Sep' value='376' />
    <set label='Oct' value='494' />
    <set label='Nov' value='761' />
    <set label='Dec' value='960' />
</chart>

This XML is stored as Data.xml in Data Folder under BasicExample folder. It basically contains the data to create a single series chart to show "Monthly Unit Sales". We'll plot this on a Column 3D Chart. Let's see how to do that.

To plot a Chart that consumes this data, you need to include the HTML code to embed a Flash object and then provide the requisite parameters. To make things simpler for you, we've put all this functionality in an JSP function named as createChartHTML(). This function is contained in Download Package > Code > JSP > Includes > FusionCharts.jsp file. So, whenever you need to work with FusionCharts in JSP, just include this file in your page and then you can work with FusionCharts very easily.

The same functionality is also present in org.infosoftglobal.fusioncharts.FusionChartsCreator.java and it can be imported and used. We will see how to do this later.

Let's see it in example. BasicChart.jsp contains the following code to render the chart:

<%@ include file="../Includes/FusionCharts.jsp"%>
<HTML>
   <HEAD>
      <TITLE>FusionCharts - Simple Column 3D Chart</TITLE>
   </HEAD>
   <BODY>
   <%
      //Create the chart - Column 3D Chart with data from Data/Data.xml
      String chartHTMLCode=createChartHTML("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300, false) ;
   %>
   <%=chartHTMLCode%>
   </BODY>
</HTML>

As you can see above, we've first included FusionCharts.jsp to help us easily create charts. After that, we've simply invoked the createChartHTML function to render the chart. To this function, you need to pass the following parameters (in same order):

Parameter Type Description
chartSWF String SWF File Name (and Path) of the chart which you intend to plot. Here, we are plotting a Column 3D chart. So, we've specified it as ../../FusionCharts/Column3D.swf
strURL String If you intend to use dataURL method for the chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method). In this case, we're using Data.xml file, so we specify Data/Data.xml
strXML String If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method). Since we're using dataURL method, we specify this parameter as "".
chartId String Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.
chartWidth int Intended width for the chart (in pixels)
chartHeight int Intended height for the chart (in pixels)
debugMode boolean Whether to start the chart in debug mode. Please see Debugging your Charts section for more details on Debug Mode.

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 > Basic Troubleshooting section of this documentation.

 

Next, we will see how to use FusionChartsCreator.java class instead of functions from FusionCharts.jsp. Using this Java Class is a better better way of creating charts in your applications. However, for the sake for simplicity, in our examples, we'll stick to include function.

BasicChartUsingFusionChartsClass.jsp contains the following code to render the chart:

<%
/*We've imported FusionChartsCreator.java, which contains functions
to help us easily create the charts.*/

%>
<%@ page import="com.infosoftglobal.fusioncharts.FusionChartsCreator"%>
<HTML>
   <HEAD>
      <TITLE>FusionCharts - Simple Column 3D Chart</TITLE>

   </HEAD>
   <BODY>
      <%

      /*This page demonstrates the ease of generating charts using FusionCharts.
      For this chart, we've used a pre-defined Data.xml (contained in /Data/ folder)
      Ideally, you would NOT use a physical data file. Instead you'll have
      your own JSP code create the XML data document. Such examples are also present.
      For a head-start, we've kept this example very simple.
      */


      //Create the chart - Column 3D Chart with data from Data/Data.xml
      String chartHTMLCode=FusionChartsCreator.createChartHTML("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300,false);       
      %>
      <%=chartHTMLCode%>
   </BODY>
</HTML>

So, you just saw how simple it is to create a chart using JSP and FusionCharts. For further information about the
FusionChartsCreator class refer to the java documentation of the class (present in Download Package > JSP > JavaDocs)

Let's now convert the above chart to use dataXML method.

 
Changing the above chart into a single page chart using dataXML method
To convert this chart to use dataXML method, we create another page BasicDataXML.jsp in the same folder with following code:


<%@ include file="../Includes/FusionCharts.jsp"%>
<HTML>
   <HEAD>
      <TITLE>FusionCharts - Simple Column 3D Chart using dataXML method</TITLE>
    </HEAD>
    <BODY>         
         <%

         /*This page demonstrates the ease of generating charts using FusionCharts.
         For this chart, we've used a string variable to contain our entire XML data.

         Ideally, you would generate XML data documents at run-time, after interfacing with
         forms or databases etc.Such examples are also present.
         Here, we've kept this example very simple.
        */

        //Create an XML data document in a string variable
         String strXML="";

         strXML +="<chart caption='Monthly Unit Sales' xAxisName='Month' yAxisName='Units' showValues='0' formatNumberScale='0'
         showBorder='1'>";
         strXML +="<set label='Jan' value='462' />";
         strXML +="<set label='Feb' value='857' />";
         strXML +="<set label='Mar' value='671' />";
         strXML +="<set label='Apr' value='494' />";
         strXML +="<set label='May' value='761' />";
         strXML +="<set label='Jun' value='960' />";
         strXML +="<set label='Jul' value='629' />";
         strXML +="<set label='Aug' value='622' />";
         strXML +="<set label='Sep' value='376' />";
         strXML +="<set label='Oct' value='494' />";
         strXML +="<set label='Nov' value='761' />";
         strXML +="<set label='Dec' value='960' />";
         strXML +="</chart>";

         //Create the chart - Column 3D Chart with data from strXML variable using dataXML method
         String chartCode=createChartHTML("../../FusionCharts/Column3D.swf", "",strXML,"myNext", 600, 300,false);
         %>
        <%=chartCode%>        
      </BODY>
</HTML>

As you can see above, we:

  1. Include FusionCharts.jsp file to create charts easily
  2. Create the XML data document in an JSP variable strXML using string concatenation. Here, we're hard-coding the data. In your applications, you can build this data dynamically after interacting with databases or external sources of data.
  3. Finally, create the chart and set the dataXML parameter as strXML. We leave dataURL parameter blank.

When you see this chart, you'll get the same results as before.

 
Using FusionCharts JavaScript class to embed the chart.
If you see the charts from previous examples in the latest versions of Internet Explorer, you'll see a screen as below:

Internet Explorer asks you to "Click and activate..." to use the chart. This is happening because of a technical issue on behalf of Microsoft. As such, all Flash movies need to be clicked once before you can start interacting with them.

However, the good news is that there's a solution to it. This thing happens only when you directly embed the HTML code of the chart. It would NOT happen when you use JavaScript to embed the chart. To see how to embed using JavaScript at code level, please see Creating Your First Chart > JavaScript Embedding Section.

Again, to make things simpler for you, we've provided an JSP function called createChart() which helps you wrap this JavaScript function, so that you don't have to get your hands dirty with JavaScript, Flash and HTML. This function is contained in the previously used FusionCharts.jsp or FusionChartsCreator.java file.

Let's now quickly put up a sample to show the use of this function. We create another JSP page SimpleChart.jsp to use this function to plot a chart from data contained in our previously created Data.xml file. It contains the following code:

<%@ include file="../Includes/FusionCharts.jsp"%>
<HTML>
   <HEAD>
      <TITLE>FusionCharts - Simple Column 3D Chart</TITLE>
       <SCRIPT LANGUAGE="Javascript" SRC="../../FusionCharts/FusionCharts.js"></SCRIPT>
   </HEAD>
   <BODY>
       <%
       //Create the chart - Column 3D Chart with data from Data/Data.xml
      String chartCode= createChart("../../FusionCharts/Column3D.swf", "Data/Data.xml", "", "myFirst", 600, 300, false, false);
      %>
      <%=chartCode%>
   </BODY>   
</HTML>

As you can see above, we've:

  1. Included FusionCharts.js file, which is required when using the JavaScript method.
  2. Included FusionCharts.jsp file.
  3. Created the chart using createChart() method.

The createChart() method takes in the following parameters:

Parameter Type Description
chartSWF String SWF File Name (and Path) of the chart which you intend to plot. Here, we are plotting a Column 3D chart. So, we've specified it as ../../FusionCharts/Column3D.swf
strURL String If you intend to use dataURL method for the chart, pass the URL as this parameter. Else, set it to "" (in case of dataXML method). In this case, we're using Data.xml file, so we specify Data/Data.xml
strXML String If you intend to use dataXML method for this chart, pass the XML data as this parameter. Else, set it to "" (in case of dataURL method). Since we're using dataURL method, we specify this parameter as "".
chartId String Id for the chart, using which it will be recognized in the HTML page. Each chart on the page needs to have a unique Id.
chartWidth int Intended width for the chart (in pixels)
chartHeight int Intended height for the chart (in pixels)
debugMode boolean Whether to start the chart in debug mode. Please see Debugging your Chart Section for more details on Debug Mode.
registerWithJS boolean Whether to register the chart with JavaScript. Please see FusionCharts and JavaScript section for more details on this.
When you now view the chart, you'll see that no activation is required even in Internet Explorer.