3D Bar Chart

Overview

This article explains how to create a 3D Bar 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 Bar Chart, most of them shared by 3D Bar.

Quick Start

To build a 3D Bar chart, use the anychart.bar3d() chart constructor. You can either pass your data to the chart constructor or create a series, using the bar() method:

// create a 3d bar chart
chart = anychart.bar3d();

// create a bar series and set the data
var series = chart.bar(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.