On refining my problem statement, I came up with a column stacked stock chart.
I have set the plotOptions.series.pointPlacement to on for my application. Now the issue is that only half columns are plotted for first and last data.
plotOptions: {
column: {
stacking: 'normal',
dataLabels: {
enabled: true,
color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
}
},
series: {
pointPlacement: "on"
}
},
Please refer to the fiddle: http://jsfiddle.net/vbjdF/
I need to somehow make sure the entire columns are plotted without truncating the columns. Any help is appreciated.
Thanks in advance.