I am trying to implement Zingchart in Python and I want to show y axis in reverse order from top to bottom like -10, 0, 10,20.....120, and also trying to hide alternative line on x axis and show fixed labels on x axis. Does anyone know how to show y axis in reverse order and hide lines on x axis.
Asked
Active
Viewed 60 times
1 Answers
0
Solved by setting mirrored:true in y axis like:
scale-y:
{
label:{
text:'Hearing Level',
},
mirrored:true,
minorTicks:1,
values:'10:120:10',
step:5
}

Kamal Saini
- 1
- 1
-
I think for this use case it would actually be scaleX – Chris SH Jul 03 '22 at 12:54