Column Chart with Error Bars

Overview

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

Quick Start

To build a Column chart, use the anychart.column() chart constructor, then create a Column series with the column() method. To add error bars, call error().

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

// create a column series and set the data
var series = chart.column(data);

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

Playground