anychart.onDocumentReady(function () {
var chart = anychart.waterfall([
{x: 'Net Sales', value: 5085000},
{x: 'Cost of Sales', value: -1250450},
{x: 'Gross Income', isTotal: true},
{x: 'Operating Expenses', value: -2350050},
{x: 'Operating Income', isTotal: true},
{x: 'Other Income', value: 750000},
{x: 'Extraordinary Gain', value: -230050}
chart.title('Click on the chart. You have 3 clicks');
chart.listen('click', customListener);
var listenKey = chart.listen('click', customListener);
function customListener(e) {
chart.title('Click on the chart. You have ' + counter + ' clicks');
chart.unlistenByKey(listenKey);
chart.title('You have no more clicks');
chart.container('container');