Creating your First Chart | ||||||||||||
To get you started with PowerCharts XT, we will show you how to build a simple Spline chart showing "Weekly Sales Summary" for a month. Once completed, the chart would look as under (with animation and interactivity, which is not reflected by the image below): Code examples discussed in this section are present in Download Package > Code > MyFirstChart folder. Follow the steps below to get started:
And that completes the recipe! Open the file weekly-sales.html in a Web Browser » Internet Explorer, Firefox, Opera or Safari (Mac/iPhone/iPad/Windows) and you will see an animated Spline chart similar to the one below:
Rendering the chart as JavaScript: The same code can render the chart as JavaScript. You just have to remove the .swf from the file name and the path of the swf file from the existing code. The modified code will look like var myChart = new FusionCharts( "Spline", ...);. This code will render a JavaScript Spline chart. Click here to see the complete code and a live example. |
||||||||||||
How it works? | ||||||||||||
Now that you've already rendered a chart, let's get behind the scenes and understand how PowerCharts XT renders charts in a web-page. Essentially, to create a chart, you need the following four items:
What happens if Flash player is not available? |
||||||||||||
Explanation of chart data | ||||||||||||
Let's take a closer look at the data and its XML form: |
||||||||||||
|
||||||||||||
Basically, what we have done above can be listed in the following points:
For creating manual XML data, you can use the visual XML Generator Utility, which converts tabular data into XML. Note that you can also provide chart data in JSON format. You can view an example of JSON data here. Or, to learn more about PowerCharts XT JSON data format, please go through PowerCharts XT data formats > JSON section. |
||||||||||||
Explanation of HTML & JavaScript code used to embed the chart | ||||||||||||
In the HTML wrapper file (or your web page), the shots are called by the included JavaScript class file FusionCharts.js. Let's take a second look at the HTML code to gain an understanding of how it works. <html> <head> <title>My First chart using PowerCharts XT </title> <script type="text/javascript" src="Charts/FusionCharts.js"> </script> </head> <body> <div id="chartContainer">PowerCharts XT will load here!</div> <script type="text/javascript"><!-- var myChart = new FusionCharts( "Charts/Spline.swf", "myChartId", "400", "300", "0" ); myChart.setXMLUrl("Data.xml"); myChart.render("chartContainer"); // --> </script> </body> </html> |
||||||||||||
In the very beginning, the JavaScript class file FusionCharts.js is included into the HTML using the code shown below. The FusionCharts.js is smart enough to automatically load the other required JavaScript files - jquery.min.js, FusionCharts.HC.js and FusionCharts.HC.PowerCharts.js on-demand. |
||||||||||||
<script type="text/javascript" src="Charts/FusionCharts.js"></script> |
||||||||||||
Next, an HTML DIV with id chartContainer is created in the body of the page. |
||||||||||||
<div id="chartContainer">PowerCharts XT will load here!</div> |
||||||||||||
Now comes the essential part, which instantiates the chart. This is called the chart constructor. |
||||||||||||
var myChart = new FusionCharts( "Charts/Spline.swf", "myChartId", "900", "300", "0" ); |
||||||||||||
Here, myChart is the name of the JavaScript object (variable) that contains reference to the chart. The following parameters are passed on to the myChart object:
Existing users: You might be wondering what happened to the sixth parameter - registerWithJS that comes after debugMode. Starting PowerCharts XT, use of registerWithJS is deprecated. It is always set to 1 internally. Although deprecated, you can continue to use this parameter in your existing code without any problem. The code below provides the reference (relative URL) of chart data file (XML in this case). The path of the XML file is set using setXMLUrl() function as shown below: |
||||||||||||
myChart.setXMLUrl( "Data.xml" ); |
||||||||||||
The code sample above uses URL of static XML file. Ideally, you would not use a physical data file. Instead you will have 'your own server side scripts to use dynamic data and build XML. You can always provide the URL of the script to virtually relay the dynamically built data. Finally, the render() method is called and the ID of HTML DIV, where the chart is meant to be rendered, is provided. This line of code renders the desired chart inside the DIV. |
||||||||||||
myChart.render( "chartContainer" ); |
||||||||||||
Important Note: The chart ID as well as the ID of the DIV element (or any HTML element where a chart is meant to be rendered) should be unique. Also, if you are using global variables to store the JavaScript references of charts, make sure that the name of each such variable is unique. The chart ID, the HTML element ID and the JavaScript variable name should not conflict with each other. Existing users: You might be wondering what happened to the functions like setDataURL()which you have already been using in your application. Yes - although deprecated, it will continue to work without any problem. |
||||||||||||
Compact rendering method | ||||||||||||
Since PowerCharts v3.2, there are alternate methods of declaring and rendering a chart using JavaScript. You can use a compact single-line JavaScript (instead of the three lines we saw in the above sample) to render a chart as shown below: |
||||||||||||
<html> <head> <title>My First chart using PowerCharts XT - Compact Rendering Method</title> <script type="text/javascript" src="Charts/FusionCharts.js"></script> </head> <body> <div id="chartContainer">PowerCharts XT will load here!</div> <script type="text/javascript"><!-- var myChart = FusionCharts.render( "Charts/Spline.swf", "myChartId", "400", "300", "chartContainer", "Data.xml" ); // --> </script> </body> </html> See it live! |
||||||||||||
The above code uses the static render function of the global FusionCharts object. This function takes all the required parameters to render a chart like the chart SWF, chart ID, width & height of chart, div ID where chart will be rendered and reference to chart data.
There are additional ways of rendering a chart as well, which have been explained in Creating charts page in "PowerCharts XT and JavaScript" section. |
||||||||||||
Troubleshooting | ||||||||||||
If for any reason, you do not see a chart, run through the following checks: If you see an endless loading progress bar in your browser, or if the right click menu (right click at the place where the chart is supposed to be) shows "Movie not loaded", check the following:
If you get an "Error in Loading Data." message, check the following:
If you get an "Invalid Data." message, it means that the XML/JSON data is malformed. Check it again for common errors like:
To check whether your final XML is ok, open it in your browser and you'll see the error. If only the text "PowerCharts XT will load here!" is displayed, check with the following:
|