At first my data serie values is completely dynamic it can contain any range of values so tickAmounts
or tickInterval
doesn't work out for me and also adding multiple y-axis for single data series didn't help.
In my scenario issue occurred when there is some small positive values relative to large negative value so the tickInterval
for y-axis is so large that small positive value does't appear on chart I have to zoom it to see values.
Here is JSFiddle link to see issue in details
Here is sample dataSerie
series: [{
name: 'Series 1',
data: [-348957349855, 23984323, 2938234, 7823479, 2293023]
}]
Is there any solution to resolve this problem.