You can make the stacked columns "levitate" by creating a series of ghosts, and then set the ghost series to opacity 0.
$.each(chart.series[2].data, function(i, point) {
if (i==2) {
point.graphic.attr({opacity: 0, 'stroke-width': 0});
}
}
This scenario illustrates the main idea. Note that you need to turn off the shadows and set showInLegend to false to get the full ghost effect.
http://jsfiddle.net/6UPrg/13/
source
share