How to Configure Bar chart X-axis scale

0
Hi All,   I have a question, how can I configure the x-axis scale, below is screenshot that I want to achieve. In above  screenshot, the x-axis ranges from 0-100 with an interval difference of 25. same I want to implement it in the screenshot below.   Please suggest how can I achieve this.   Thanks in advance.  
asked
1 answers
0

Hi Rahul,

You can configure that in the Advanced tab of the chart configuration. Add the following to the Layout options, and set the Mode to Advanced:

{
    "xaxis": {
        "range": [
            0,
            100
        ],
        "dtick": 25
    }
}

 

answered