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 about the settings available for the Area Chart, most of them shared by 3D Area.

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, 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

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