Reputation: 187399
If I create a line chart with Highcharts and set the minimum value of the y-axes to the smallest value in my data series (0 in the example below), then the points along the y-axes (circled below) are not connected. Is there a way to connect them.
Upvotes: 1
Views: 127
Reputation: 45079
This is known Highcharts bug: https://github.com/highslide-software/highcharts.com/issues/1687
As suggested, you can set lineWidth: 0 for xAxis.
Upvotes: 1
Reputation: 4284
A solution is to put the min value to something below zero like this:
yAxis: {
min: -0.1
}
so you will now see the values that are at 0.
And set startOnTick to false
Upvotes: 1