Reputation: 36703
So just like highcharts have the basic area graph i.e. one area graph behind the another I want to have multi column graphs in which one series will be exactly behind the other series and will be visible through some transparency.
Currently highcharts have stacked column graphs but in those one series is either on the top of other series or is beside them.
I hope there must be some configuration available for that.
Upvotes: 1
Views: 622
Reputation: 17791
Yes, you can do it by setting grouping: false
in the plotOptions.
Updated fiddle:
However, this is - generally speaking - a really bad way to show data, that adds unnecessary complexity and obfuscation of the data for the user.
FWIW.
Upvotes: 3