Any Chart-Polar Chart

0
Hi all, I implemented the Polar Chart(Any Chart), it is plotting.   I want the axis as fixed range like it should always plot between 0-5 not to maximum value. How can I implement this? TIA
asked
1 answers
0

Just to help others that find this post with a similar problem, just enter this JSON in the layout static field of the widget:

{
  "polar": {
    "radialaxis": {
      "visible": true,
      "range": [
        0,
        5
      ]
    }
  }
}

 

Replace 0,5 within the range array with the range you desire.

answered