I have multiple lines in a Highcharts graph, and would like to make them appear one after another, and not all at the same time. Is that possible? I have a fiddle here.
Perhaps one approach would be to display first no line at all (how?), and then make them appear in an additional function like:
function(chart)
{
chart.series[0].drawLine({lineWidth: 1}),
chart.series[1].drawLine({lineWidth: 1}),
chart.series[2].drawLine({lineWidth: 1});
});
where I have however no idea to make them appear... Any tipp for me? Thanks so much!