sk2212
sk2212

Reputation: 1722

How to show a column with the value Zero in Bar chart in Highcharts?

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

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37588

minPointLength is also supported for bar.

Docs: http://api.highcharts.com/highcharts#plotOptions.bar.minPointLength

Upvotes: 1

Related Questions