<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.column3d();
chart.data([
['Apples', 5, 8, 4],
['Pears', 6, 2, 5],
['Bananas', 2, 6, 4],
['Peaches', 6, 3, 8]
]);
// Set left bound
chart.left('10%');
// Set right bound
chart.right('10%');
// Set top bound
chart.top('20%');
// Set bottom bound
chart.bottom('20%');
chart.title('Set left/right/top/bottom bound');
chart.container('container');
chart.draw();
});