Vertical Stacked Area Chart

Overview

A Vertical Stacked Area Chart is a multiple-series Area Chart that displays the trend of the value each series contributes over time or categories, which categories are placed among the vertical axis.

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

Quick Start

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

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

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

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

Playground

Adjusting

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