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.title({text: 'Click on the chart', orientation: 'top'});
4
5
// Set event listener on the chart
6
chart.listenOnce('click', function (e) {
7
chart.title('You can\'t click anymore');
8
});
9
10
chart.container('container');
11
chart.draw();
12
});