I am new to highCharts, I am trying to get a LineChart with Multicolored Area . I searched a lot on forums and even on stack overflow but didn't found any. Attached image format as what i want.
I tried this FiddleLink.
$(function () {
$('#container').highcharts({
chart: {
type: 'area'
},
series: [{
name: 'USA',
data: [10,20,30,null,40,50]
}, {
name: 'USSR/Russia',
data: [null,null,30,66,40]
},
{
name: 'INIA',
data: [null,null,55,66,40]
}]
});
});
So if anyone helps me on this will be a great help for me.``
