3D Column Chart

Overview

This article explains how to create a 3D Column 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 Bar Chart article.

Quick Start

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

// create a 3d column chart
chart = anychart.column3d();

// create a column series and set the data
var series = chart.column(data);

Playground

Special Settings

Z-Distribution

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

Point Size

This chart type allows you to set the size of its points. Read more in the Point Size article.