Take a look at this sample highchart fiddle:
$('#button').click(function () {
var chart = $('#container').highcharts();
// I need the code to draw lines on points, similar to the animation in the provided fiddle link.
});
In the fiddle example, clicking 'run' initiates an animation where a line is drawn from left to right. I am trying to achieve a similar effect by redrawing my highchart when a button is clicked. I have various types of charts in my project such as column and pie charts. Both reflow and redraw methods do not meet my needs. Any assistance would be appreciated.