3D Stacked Bar Chart

Overview

A 3D Stacked Bar Chart is a multiple-series 3D Bar Chart that displays the trend of the value each series contributes over time or categories.

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

Quick Start

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

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

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

// create 3d bar series
var series1 = chart.bar(seriesData_1);
var series2 = chart.bar(seriesData_2);

Playground

Adjusting

The 3D Stacked Bar series' settings are mostly the same as other series' ones. The majority of information about adjusting series in AnyChart is given in the General Settings article.