Legends Not Matching Columns Ticks On XAxis In Highcharts
I am trying to create a column chart on Highcharts but I am facing some errors. Why are my columns starting so far from the start of the chart? I want the xAxis labels to match t
Solution 1:
This is the expected output of the data and configuration. You have multiple series, each with a single data point. The chart will by default group them.
You can set grouping:false
in the series plot options, but a much better way to display this would be as a single series in a bar chart, where the name is the category and no redundant legend or confusing multiple colors are required.
Post a Comment for "Legends Not Matching Columns Ticks On XAxis In Highcharts"