Reputation: 19
I have a client that needs a pyramid chart. The funnel chart is perfect if only I could flip it around so it becomes a pyramid.
Seems like there would be a way to flip it but I cannot figure it out.
Any help would be appreciated!
Upvotes: 0
Views: 1191
Reputation: 21
If you only want flip the Funnel chart you can use reversed attribute
in the series section of the chart
Upvotes: 2
Reputation: 14442
Why not just modify the neckWidth
and neckHeight
and make the total width
0?
neckWidth: '100%',
neckHeight: '0%',
width: '0%'
See this example.
Upvotes: 2
Reputation: 4776
instead of using funnel chart you can use, area chart or stacked area chart.
type: 'area'
that will be an easier way to get pyramid like in here http://jsfiddle.net/KQ344/
hope this will help you in getting what you want.
Upvotes: 0