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.
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.
Share Improve this question edited Jan 2, 2014 at 9:37 Strikers asked Apr 29, 2013 at 9:19 StrikersStrikers 4,7762 gold badges31 silver badges59 bronze badges1 Answer
Reset to default 16We need to set grouping
to false.
plotOptions: {
column: {
grouping: false,
shadow: false
}
}
Fiddle yourself upon the sample demo here
.
EDIT
I have updated it for polar charts. Find it here
.