<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.gauges.linear([300, 250, 150]);
chart.addPointer(0, 1, 2);
// Set left bound
chart.left('10%');
// Set right bound
chart.right('10%');
// Set top bound
chart.top('30%');
// Set bottom bound
chart.bottom('30%');
chart.title('Set left/right/top/bottom bound');
chart.container('container');
chart.draw();
});