Vertical Stacked Step Area Chart

Overview

A Vertical Stacked Step Area Chart is a multi-series Step Area Chart that displays the trend of the value each series contributes over time or categories, which categories are spread among the vertical axis. The difference between simple Area Chart and Step Area is that points and angles are replaced with a polyline so the whole chart reminds of stairs.

The concept of stacking in AnyChart is described in this article: Stacked (Overview).

Quick Start

To build a Vertical Stacked Step Area Chart, create a multi-series Vertical Step Area Chart and set the stackMode() method into value:

// create a vertical area chart
var chart = chart.verticalArea();

// enable the value stacking mode
chart.yScale().stackMode("value");

// create stepArea series
var series1 = chart.stepArea(seriesData_1);
var series2 = chart.stepArea(seriesData_2);

Playground

Adjusting

The Vertical Stacked Step Area series' settings are mostly the same as other series'. The majority of information about adjusting series in AnyChart is given in the General Settings article.

You are looking at an outdated v7 version of this document. Switch to the v8 version to see the up to date information.