Hello,
I have a dataset like [{label:”1″,y:2},{label:”2″,y:4},{label:”3″,y:1},{label:”4″,y:2}]
I’d like to create a reversed chart with the top Y line set to 1 (as it is the minimum possible value for Y in my case).
And if possible with an interval = 2 on Y axis (so 1, 3, 5, etc.).
I’m using the following but it is not exactly what I’d like:
axisY:{
reversed: true,
interval: 2,
minimum: 1,
includeZero: true
}
Could you please help me with this?