Area Chart with Error Bars

Overview

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

Quick Start

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

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

// create an area series and set the data
var series = chart.area(data);

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

Playground