FusionCharts Suite shares a great chemistry with Javascript. What does this mean for you? Quite a lot actually. You can combine the two of them to:
  1. Create comprehensive sales reports: Show a chart at the top with summarized sales info for say 5 years. Then allow the user to click on any of these years for more details in the same page, without any page refreshes. See a demo.
  2. Provide buttons for exporting/printing charts outside the chart area: FusionCharts allows you to export the charts as JPEG/PNG/PDF (one at a time or all of them in a page at once) and also print them with a single click. Using Javascript, you can provide buttons outside the chart area for doing the same thus providing a very friendly UI. See a demo.
  3. Build flight selectors: Give the user a map and show all the possible routes he can fly. When he clicks on a particular route, show him all the flights for that route. Wouldn’t it save a lot of time otherwise wasted in selecting a city in the ‘From’ and then again in the ‘To’ field. See a demo.
  4. Track events like loading/rendering/data loading of charts: Using Javascript you can track whether a chart has been loaded and rendered, and the same for the data as well. Also, you can check if some error occurred during either of these processes in which case you can call suitable routines to either correct the error or display it.
  5. Get data/attributes from chart: You can retrieve the entire data from the chart either in CSV or XML format. You could also retrieve individual attributes of the chart in Javascript.
This list is by no means a comprehensive list of the things you can do with FusionCharts and Javascript combined. It is meant to give you a small idea of things and fire up your imagination before we go behind the scenes. Also, you might appreciate that since FusionCharts and Javascript have infinite possibilities together, it will not be possible to discuss everything at length in this post itself. While we have provided relevant links for more information wherever it is apt; whenever you need more info on anything, please check out the section FusionCharts and Javascript in our online documentation. Ready? Here we go.

Basics

The FusionCharts download package consists of the chart swfs and the FusionCharts Javascript class called FusionCharts.js among other things. These are the only 2 resources we need to concern ourselves with to explore the power of FusionCharts and Javascript. The chart swfs as is evident are the individual chart files. FusionCharts.js is the FusionCharts Javascript class which allows easy embedding of charts in the webpages without the cryptic <object> and <param> tags. Security Issues: Adobe Flash Player, by default, restricts SWF files on local filesystem to make any JavaScript class, or vice-versa to protect the end user from “evil” SWFs. You can get around this by running the Javascript code either from the server (either remote or localhost) or by configuring the Flash Player to allow SWFs present in specific folders to raise JavaScript class by adding the folder to  http://www.macromedia.com/support/documentation/en/flashplayer/help/settings_manager04.html Now that we are done with the securty issues, let us take an example straightaway to understand how the chart swf and FusionCharts.js act in conjunction. This example illustrates 3 concepts:
  1. How to embed a chart in a webpage using the simple Javascript embedding technique made possible by FusionCharts.js instead of using the cryptic <object> and <param> tags?
  2. How to make use of the APIs exposed by the chart? In this example, we will make use of the setDataXML API to set the data for the chart.
  3. How to track events raised by the chart? Here, we will display an alert box when the chart has finished rendering, using the FCRendered_event.
Don’t worry if you can’t make head or tail of the APIs and events we are talking about – we will discuss them in details later on. So the HTML for the page having the chart embedded in it would be:

FusionCharts
In the above code, we are first creating a Column3D chart using FusionCharts JavaScript class. We set the DOM ID of the chart as chart1Id. It is this ID using which the chart will now be recognized in the HTML page. You need to make sure that each chart on the page gets a different ID, else the browser would start behaving weirdly, to say the least. The FusionCharts constructor function, which helps you embed a chart easily using Javascript looks as under:
 var chart1 = new FusionCharts("../../FusionCharts/Column3D.swf", "chart1Id", "400", "300", "0", "1");
The parameters passed to it in order are: URL of the swf file of the chart type, its DOM ID, chart width and height, debugMode and registerWithJS – both of which accept boolean values. To register the chart with JavaScript, we set the registerWithJS parameter to 1. Now, we’ve provided a basic XML data document to the chart using its setDataXML method. Finally, we render the chart, and track the same to display an alert box when the chart has finished rendering and raises the FC_Rendered event.

Events exposed by the chart

Now that we have a basic grasp of things, let us take a look at the events that FusionCharts v3.1 exposes. Barring the first 2, everything has been newly introduced in FusionCharts v3.1:
  • FC_Loaded(DOMId): Raised when the chart SWF has finished downloading in the user’s browser. Typical Use: To hide any loader components that you might have on your page.
  • FC_Rendered(DOMId): Raised when the chart has finished rendering. Typical Use:    To invoke any further JavaScript methods on chart, or to change the data of chart.
  • FC_DataLoaded(DOMId): Raised when the data of the chart has finished loading – both in dataXML or dataURL method. Typical Use: To further process data in any other components in your page.
  • FC_DataLoadError(DOMId): Raised    when there was an error in loading data from the specified URL
  • FC_NoDataToDisplay(DOMId): Raised when the XML data loaded by the chart didn’t contain any data to display
  • FC_DataXMLInvalid(DOMId): When the XML data loaded by the chart was invalid (wrong XML structure)
The last 3 events are typically used to show an error message to the user, or to take a corrective measure. All the events can be tracked the same way as the FC_Rendered event was tracked using the DOMId of the chart in the example earlier.

Javascript APIs exposed by the chart

All the charts in the FusionCharts expose a number of APIs which allow you to print the chart, export the chart as image/PDF, get an attribute or the entire data of the chart and the like. These APIs are not a part of FusionCharts.js, but built into the chart swfs themselves and as such, you do not need to include FusionCharts.js in your HTML code to make use of these APIs. The APIs exposed by all charts in FusionCharts with their respective functions are:
  • setDataURL(strDataURL:String): Changes the data of the chart to the new specified URL. The URL has to be relative to the chart.  More details here.
  • setDataXML(strDataXML:String): Changes the data of the chart to the specified XML string. More details here. http://www.fusioncharts.com/developers/documentation/Contents/JS_setDataXML.html
  • print(): Prints the chart. More details here.
  • exportChart(exportSettings: Object): Calls the export chart routine to save the chart as PDF/image. To get more details on this, pleas check out the Exporting as Image/PDF section in the online documentation.
  • getXML(): Returns the XML data of chart as string. More details here.
  • getChartAttribute(attrName: String): Returns the value of the attribute as specified in chart’s XML data > <chart> element. More details here.
  • signature(): A string representing the signature of SWF. For FusionCharts v3 charts, it’s FusionCharts/3.1
  • hasRendered(): A boolean value indicating whether the chart has rendered. Boolean value indicating whether the chart has finished rendering
  • getDataAsCSV(): Returns the data of chart as CSV string. More details here.
Except the first 2 APIs, all the other APIs have been newly introduced in FusionCharts v3.1. Now that you know about the tremendous chemistry that FusionCharts shares with Javascript, make the most out of it. With this post concludes the How to get the most out of v3.1 series. We hope this indeed helps you get the best out of our products. If there is any feature you want us to go into further details, just let us know in the Comments section and we will be onto it.

Take your data visualization to a whole new level

From column to donut and radar to gantt, FusionCharts provides with over 100+ interactive charts & 2,000+ data-driven maps to make your dashboards and reports more insightful

Explore FusionCharts

Leave a comment

Your email address will not be published.

This site uses Akismet to reduce spam. Learn how your comment data is processed.

21 responses on “FusionCharts and Javascript – The Chemistry

  1. but these charts using Flash for displaying, just use JS for control it, right?
    whatever, I think these charts are very nice and cool, thank you very much for sharing.
    And can you share these charts on my JavaScript library?
    Awaiting your response. Thank

  2. Hi,
    Nice to know you like the charts.
    Yes, you are right — the charts use Javascript for embedding and more controls.
    Sharing the charts on the Javascript library -> can you please drop us a mail at [email protected] and then we could pursue this further?
    Sanket
    FusionCharts Team

  3. I wish you converted all your products into HTML5.
    Using JS, Canvas, SVG should give the same results with greater flexibility to the user.

  4. @Drazick: Yes once HTML5 becomes more widespread, we will take a call on that. Right now everyone seems to be very happy with Flash 🙂

  5. Yes! Looking forward to HTML5 using JS and SVG! This will also open my webapps for iPhone!

  6. @Sanket: If you had the HTML5 version, we would not use the Flash version. So from my point of view, flash is very good until you come up with a HTML5 based version. So it’s more not because we are happy with the Flash version, but more like we use the Flash version because you don’t have made the HTML5 version yet.
    I will look forward to see you introduce the HTML5 version, because your product is the best. And as @Kristian stated, the HTML5 version will open our webapps to none flash enabled platforms.

  7. René: We have just started work on the HTML5 version. Will post more updates when we have something more concrete…

  8. Hi Sanket – we have a Fusion charts enabled BI dashboard. We want to enable the same on Iphones – is this possible? I am hearing that Iphone does not support flash. Do you have any iphone app or plugin that we can use to quickly enable our dashboard on iphone?
    Thanks!

  9. @Lina:
    Right now all the components we have are Flash based and hence wouldn’t work on the iPhone. We have however just started working on an HTML 5 version as well. When there is something more concrete on that, we will surely let everyone know about it.

  10. @Sanket – Thanks for your reply. Good to know that HTML 5 version is being worked upon. In the meantime, I know that the Fusion chart graphs can also be displayed as a .png or .jpeg format. Is it possible to enable our BI application on the iphone in this format or even this will not work ? Any examples for this OR implementation stories at other customer sites would be extremely helpful for us to make the right choice!
    Thanks!
    Lina

  11. @Lina: Our charts can be exported in JPEG or PNG but not rendered in that format by default unfortunately.

  12. We have a enterprise web application. Over the years, we have purged Flash………..instead of FusionCharts.
    Now we are iPad-ready………………..except for FusionCharts!
    Do hurry up and migrate to HTML5. Flash has had its day. It is time to move on.

  13. @S. Richards: Yes, we have started work on it and should pick up pace quickly. We will keep you posted.

  14. It’s exactly the same for me…
    We stay hardly in touch with fusionchart component… but we have to avoid the dead flash technology : we can’t imagine no to present our solution on iphone… and now with the ipad it is done.
    So since the 05 april no beta version is downloadable ? 🙂
    You can’t imagine how warm is this subject at this moment.
    Even without animation but based on the same XML DATA source will be a very usefull workaround.

  15. Excellent! We’re also very excited to hear that you’re working toward an HTML5 solution.

  16. Great to hear about an HTML5 version. Looking forward to a release 🙂

  17. If possible, publish an early release for HTML5 support as soon as possible so our developers can see the approach you are taking. We needed this support last year due to iPhone users. Now the iPad is here along with iOS 4. FusionCharts is a great product, so let’s see that HTML 5 support take it to the next level!

  18. Great to hear you’re working on an HTML5 verison
    Do you have any updates on this.
    Specifically :
    – any indication on a release date (3 months/6 months/12 months?)
    – Will there be a migration path (same XML structure etc)
    – Will this include animation?
    Thanks and keep up the good work

  19. Love your charts, but we are also in need of a library that provides easy switching between Flash and HTML5 functionality. We would prefer to have one library that we can call as either HTML5 or Flash depending on the browser especially if the javascript call is the same either way (data formats and parameters).

  20. Hello,
    I’m getting problems (the graph desapear) to print my graphs using fusioncharts flash based (old version). I´m using google chrome. Only IE works fine.

    Thanks

Your next great dashboard starts here

With our interactive and responsive charts, extensive documentation, consistent API, and cross-browser support - delight your customers with kick-ass dashboards

Explore FUSIONCHARTS