I have a line chart. The data is always indexed at 100. I want the yAxis to always start at 100. I am setting yAxis as...
yAxis: {min: 0, tickinterval: 100}
which does set my yAxis as {0,100,200,---}. it really does work for most of my data but when the numbers are huge, the tickinterval changes. it goes from {0, 5k, 10k ...}. How should i set up my interval so that 100 is always visible in the yAxis?