Reputation: 1722
How to show zero values in a HighChart from type "bar"? I already find a working solution for a chart from type "column":
plotOptions: {
column: {
minPointLength: 3
}
}
How to apply these options for type "bar"?
Upvotes: 0
Views: 2282
Reputation: 37588
minPointLength is also supported for bar.
Docs: http://api.highcharts.com/highcharts#plotOptions.bar.minPointLength
Upvotes: 1