3D Area Chart

Overview

This article explains how to create a 3D Area chart in AnyChart.

To learn more about 3D charts in general and how to customize them, see 3D Charts (Overview). You can also read the Area Chart article.

Quick Start

To build a 3D Area chart, use the anychart.area3d() chart constructor. You can either pass your data to the chart constructor or create a series by using the area() method:

// create a 3d area chart
chart = anychart.area3d();

// create an area series and set the data
var series = chart.area(data);

Playground

Special Settings

Note: When you use the anychart.line3d() chart constructor, the Z-distribution is enabled by default, which means that the series of multiple-series charts are distributed along the Z-axis.