4

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

BobDroid
  • 1,898
  • 5
  • 19
  • 39

4 Answers4

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
2
is3D: true

does not work for Column Charts unfortunately.

MDT
  • 1,599
  • 4
  • 18
  • 26
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