In google chart, for pie-chart it is easy to bring 3D view by just adding 'is3D':true
. But how we can able to get 3D effects for bar, column & combo charts, shown in this demo
Asked
Active
Viewed 1.9k times
4

BobDroid
- 1,898
- 5
- 19
- 39
4 Answers
4
Since I can find the 3D option in Visualization: Column Chart (Old Version) and base on the answer.
Looks like the 3D option of column chart (and others) is not available with new version of Core Charts
.

fankt
- 1,007
- 1
- 7
- 16
-
3D option still not present in new ColumnChart – Stefano Apr 01 '14 at 20:15
-
Still not there. And the direction is also not that, material Chart is available for Bar and Column charts (not for Combo yet). Such 3D is not part of material design, so I have a feeling that we won't see 3D. – Csaba Toth Nov 28 '15 at 03:44
-
This 3D feature is still not available as of Dec 2016. – rational Dec 13 '16 at 19:18
-
yup...not yet! july 2017 – neophyte Jul 07 '17 at 08:24
-
Feb 2018, still not there – SmoveBB Feb 12 '18 at 17:59
-
June 2021, most regretfully still not available – Tamtomo Abdi Negoro Jun 28 '21 at 14:18
-
also not available in Nov 2022. – pstiegele Nov 24 '22 at 17:11
0
also need to replace "corechart" by "columnchart"
google.load("visualization", "1", { packages: ["columnchart"] });
google.setOnLoadCallback(drawChart);

Greg
- 18,111
- 5
- 46
- 68
-2
Add the following:
is3D: true
For example:
var options = {
title: 'My Pie Chart',
is3D: true
};

Jean-François Corbett
- 37,420
- 30
- 139
- 188

Luan
- 21