Check out 3 new chart types in FusionCharts 3.15

Introducing 3 new chart types - Sankey, Chord & Sunburst

Check Them Out

Override the chart config

The --chart-config-options option can be used to change the chart configuration, as shown in the example below:

{
    "chart-config": "uat/fusioncharts_chart.js",
        "chart-config-options": {
            "dataSource.chart.subCaption": "FusionExport",
            "dataSource": {
              "chart": {
                "theme": "ocean"
              }
        }
    }
}
Were you able to implement this?

In the above configuration, we are replacing the subheadings of all charts as well as adding a theme to the configuration. Once done, run the following command:

$ fe -e fusioncharts_config.json
Were you able to implement this?