HTMLcopy
1
<div id="container"></div>
CSScopy
6
1
html, body, #container {
2
width: 100%;
3
height: 100%;
4
margin: 0;
5
padding: 0;
6
}
JavaScriptcopy
x
1
anychart.onDocumentReady(function () {
2
var chart = anychart.column3d();
3
chart.column([20, 7, 18, 10, 14]);
4
5
// Sets depth of the point by Z-axis.
6
chart.zAspect(20);
7
8
chart.title("Chart 3d zAspect is set to: " + chart.zAspect() + ".");
9
chart.container("container");
10
chart.draw();
11
});