Enable More Than 2 Axes on Chart

The Multi Axis line chart supports more than 2 axis which can be enabled by adding data objects in the axis array.

Shown below is a snippet on how an axis object looks like

        {
            "seriesname": "Power [W]",
            "data": [
            {
                "value": "6"
            },
            {
                "value": "26"
            },
            {
                "value": "16"
            },
            {
                "value": "27"
            },
            {
                "value": "28"
            },
            {
                "value": "33"
            }
            ]
        }

The above snippet adds an axis by name Power to the multi-axis line chart when added to the data of the chart

Shown below is a multi axis line chart with the axis shown above added

FusionCharts should load here..

The data structure of the chart is shown below

...

The y-axis in the above chart has been added for Power, Temperature and Speed.

The tickWidth attribute specifies the distance between successive intervals on the axis line. The titlePos attribute lets you display the axis title on the left or on the right of the axis line.

You can toggle data for an axis being displayed by clicking on the check box at the bottom of the axis.