Step Area Chart with Error Bars

Overview

This article explains how to create a Step Area 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 Step Area Chart article to learn about other available settings.

Quick Start

To build a Step Area chart, use the anychart.area() chart constructor, then create a Step Area series with the stepArea() method. To add error bars, call error().

// create a chart
chart = anychart.area();

// create a step area series and set the data
var series = chart.stepArea(data);

// create error bars
series.error("10%");

Playground