Marker Chart with Error Bars

Overview

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

Please note that error bars are also supported by Scatter Marker charts - see Scatter Marker Chart with Error Bars (this article describes the Cartesian Marker chart).

Quick Start

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

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

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

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

Playground