Jump Line Chart with Error Bars
Overview
This article explains how to create a Jump Line chart with error bars.
To learn more about error charts in general and how to customize them, see Error Chart (Overview). In addition, you can read the Jump Line Chart article to learn about other available settings.
Quick Start
To build a Jump Line chart, use the anychart.line() chart constructor, then create a Jump Line series with the jumpLine() method. To add error bars, call error().
// create a chart
chart = anychart.line();
// create a jump line series and set the data
var series = chart.jumpLine(data);
// create error bars
series.error("10%");