nielsv
nielsv

Reputation: 6800

Stacked column highcharts change x and y

I'm looking for a charts like this:

enter image description here

I would like to use the stacked column charts from the highcharts library. But as you can see in the image I need to change the view of the values. But I have no idea to begin with this. Could someone help me on my way?

Upvotes: 0

Views: 236

Answers (1)

Sebastian Bochan
Sebastian Bochan

Reputation: 37578

You can do this by stacked chart as you mentioed,

series: [{
            name: 'John',
            data: [null, null, 4, 7, 2]
        }, {
            name: 'Jane',
            data: [null,null, 3, 2, 1]
        }, {
            name: 'Joe',
            data: [3, 4, 4, 2, 5]
        }]

http://jsfiddle.net/72E7y/

Upvotes: 1

Related Questions