score:0

Accepted answer

Nope, it's not supported. You can stack only the same series type. However, you can set transparent color for area, see: http://jsfiddle.net/uq9HM/1/

        series: [{
            name: 'Asia',
            data: [502, 635, 809, 947, 1402, 3634, 5268]
        }, {
            name: 'Africa',
            data: [106, 107, 111, 133, 221, 767, 1766]
        }, {
            name: 'Europe',
            fillColor: 'rgba(0,0,0,0)',
            data: [163, 203, 276, 408, 547, 729, 628]
        }, {
            name: 'America',
            data: [18, 31, 54, 156, 339, 818, 1201]
        }, {
            name: 'Oceania',
            data: [2, 2, 2, 6, 13, 30, 46]
        }]

score:1

There's a few demos of this on the HighCharts website... take a look here, for example: http://www.highcharts.com/demo/combo-dual-axes

You can see the code by clicking "view options" or "edit in jsFiddle."

score:1

did you check with arearange type of graph

type: 'arearange',

here is a jsfiddle http://jsfiddle.net/3yg8b/

hope this will be useful for you


Related Query

More Query from same tag