Set line step for series
Description
The following code shows how to set line step for series.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>
$(function () {<!-- w ww .ja va 2s .c om-->
$('#container').highcharts({
series: [{
data: [1, 2, 3, 4, null, 6, 7, null, 9],
step: 'right',
name: 'Right'
}, {
data: [5, 6, 7, 8, null, 10, 11, null, 13],
step: 'center',
name: 'Center'
}, {
data: [9, 10, 11, 12, null, 14, 15, null, 17],
step: 'left',
name: 'Left'
}]
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<div id="container" style="height: 400px"></div>
</body>
</html>