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
chart.bounds(100, 10, '100%', '100%');
6
chart.container('container');
7
chart.draw();
8
9
// Converts the local coordinates to global coordinates.
10
var globalCoordinates = chart.localToGlobal(0, 0);
11
12
chart.title({text: 'Global coordinates [x: ' + globalCoordinates.x + ', y: ' + globalCoordinates.y + ']', orientation: 'top'});
13
});