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.sparkline([1.3, 2, 1.4, 4, 2.3, 6]);
3
chart.container('container');
4
chart.draw();
5
6
// Converts the local coordinates to global coordinates.
7
var globalCoordinates = chart.localToGlobal(0, 0);
8
9
chart.title({text: 'Global coordinates [x: ' + globalCoordinates.x + ', y: ' + globalCoordinates.y + ']', orientation: 'top'});
10
});