user2928175
user2928175

Reputation: 19

How to make highcharts funnel into pyramid

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

Answers (3)

user3462799
user3462799

Reputation: 21

If you only want flip the Funnel chart you can use reversed attribute

in the series section of the chart

Funnel reveresed

Upvotes: 2

wergeld
wergeld

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

Strikers
Strikers

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

Related Questions