Vertical Range Step Area Chart

Overview

This article explains how to create a Vertical Range Step Area chart in AnyChart.

To learn more about vertical charts in general and how to customize them, see Vertical Charts (Overview). You can also read the Range Step Area Chart article to learn about other available settings.

Quick Start

To build a Vertical Range Step Area chart, use the anychart.verticalArea() or anychart.vertical() chart constructor. Then call the rangeStepArea() method to create a Range Step Area series.

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

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

Playground