3D Percent Stacked Column Chart
Overview
A 3D Percent Stacked Column Chart is a multi-series 3D Column Chart that displays the trend of the percentage each value contributes over time or categories.
The concept of stacking in AnyChart is described in this article: Stacked (Overview).
Quick Start
To build a 3D Percent Stacked Column Chart, create a multi-series 3D Column Chart and set the stackMode() method into percent:
// create a chart
var chart = chart.column3d();
// enable the percent stacking mode
chart.yScale().stackMode("percent");
// create 3d column series
var series1 = chart.column3d(seriesData_1);
var series2 = chart.column3d(seriesData_2);
Adjusting
The 3D Percent Stacked Column 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.