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.line();
3
4
var lineSeries = chart.column([
5
{x: 'January', value: 2},
6
{x: 'February', value: 5},
7
{x: 'March', value: 3},
8
{x: 'April', value: 9},
9
{x: 'May', value: 4}
10
]);
11
12
var title = chart.title();
13
title.enabled(true);
14
title.text('Click on line series. You have 3 clicks');
15
16
lineSeries.listen('pointClick', customListener);
17
18
var counter = 3;
19
20
function customListener(e) {
21
counter--;
22
title.text('Click on line series. You have ' + counter + ' clicks');
23
if (counter === 0) {
24
// Removes listener.
25
lineSeries.unlisten('pointclick', customListener);
26
title.text('You have no more clicks');
27
}
28
}
29
30
chart.container('container');
31
chart.draw();
32
});