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.gauges.circular([{value: 7.5}]);
3
chart.axis();
4
chart.needle();
5
6
// Set left bound
7
chart.left('10%');
8
9
// Set right bound
10
chart.right('10%');
11
12
// Set top bound
13
chart.top('30%');
14
15
// Set bottom bound
16
chart.bottom('30%');
17
18
chart.title('Set left/right/top/bottom bound');
19
chart.container('container');
20
chart.draw();
21
});