Exporting Charts

FusionTime allows you to export your rendered charts in JPG, PNG, SVG, and PDF formats.

In this article we will discuss how to export time-series charts in FusionTime.

The dropdown menu with export options looks as shown below:

Export Time Series

To enable export:

  • Set the exportEnabled attribute to 1 under chart level.

  • The image (menu) button is then visible on the top-right corner of the chart.

Hover over this button to see the dropdown menu with export options. From the menu, select the required format. The chart is exported to your machine in the selected format.

A time-series chart with export enabled is shown below. Hover over the image (menu) button and select the required export format.

Online Sales of a SuperStore in the US2011Jul2012Jul2013Jul2014Jul2015Sales200400600201220132014Jan 04, 2011 - Dec 31, 2014Sales3YAll
Export As PNG
Export As JPG
Export As PDF
Export As SVG

Click here to edit the above chart.

To enable the export feature, refer to the code below:

new FusionCharts({
  type: "timeseries",
  dataSource: {
    chart: {
      exportEnabled: "1" //Enable Export Feature
    }
  }
});
Were you able to implement this?

In the above code we have:

  • Set the value of the exportEnabled attribute to 1 under the chart object