In my HighChart line graphs, the series data is being fed from my Ruby on Rails application dynamically. Sometimes the series values are zeros or less which is a problem fo
Have you tried using a label formatter?
var chart = new Highcharts.Chart({ yAxis: { labels: { formatter: function() { if(this.value === 0.00001){ return 0; } else { return this.value; } } } } });