Hi,
I am displaying the following chart and I would like to show tick lines on Y axis, only for the -1.0, -0.3, 0.0, 0.3 and 1.0 values. As you see, the Y axis tick lines are too many and too crowded.
My setup is like this:
yAxis: AxisModel = {
valueType: 'Double',
minimum: -1.0,
maximum: 1.0,
interval: 0.1,
majorGridLines: { width: 0 },
majorTickLines: { width: 1, height: 4 },
labelFormat: 'n1',
stripLines: [{start:-1.0, end: -0.3, color:"#EC5221", opacity: 0.1}]
}
Is there any way to achieve the desired result?
Thanks