Spline Area Chart with Error Bars

Overview

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

Quick Start

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

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

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

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

Playground