Reputation: 4776
While going through different kinds of charts i came across a chart like this called overlapping bar chart
can we create a similar or else the same chart using highcharts?
Thanks for your time.
Upvotes: 2
Views: 7476
Reputation: 4916
We need to set grouping
to false.
plotOptions: {
column: {
grouping: false,
shadow: false
}
}
Fiddle yourself upon the sample demo here
.
I have updated it for polar charts. Find it here
.
Upvotes: 16