fusioncharts

Does FusionCharts support log scale for the x axis?


It seems that FusionCharts only support logarithmic scales for the Y axis. For instance, the base: field below is only applied to the y axis.

    "chart": {
        "caption": "Galaxies",
        "xAxisName": "Distance",
        "yAxisName": "Velocity",
        "base": "10",
        "theme": "fusion"
    },

Instead, I would like both x and y axes to use a log scale. Is this supported in FusionChart?


Solution

  • Here is the document please refer if it would help you - https://www.fusioncharts.com/dev/chart-guide/standard-charts/logarithmic-charts

     {
        "chart": {
            "base": "5"
        }
    }