Vertical Step Area Chart

Overview

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

Quick Start

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

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

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

Playground