I\'m outputting a series of highcharts on a page. In some instances, all data for the specified time period may come back with 0 values.
In such a case, the chart looks
For Highcharts 5.x.x, you should be able to just specify:
yAxis: {
softMin: 0,
softMax: 1,
};
This won't work for line chart, which requires that you also set minRange
in the same config object as above. Experiment with different values, since defining for example minRange: 6
, created a range on yAxis between 0 and 4.