Strikers
Strikers

Reputation: 4776

can we create an overlapping bar chart using highcharts?

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?

I've seen this in a forum regarding TIBCO spotfire

Thanks for your time.

Upvotes: 2

Views: 7476

Answers (1)

Gopinagh.R
Gopinagh.R

Reputation: 4916

We 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.

Upvotes: 16

Related Questions