anychart.onDocumentReady(function () {
var chart = anychart.line();
var lineSeries = chart.column([
{x: 'January', value: 2},
{x: 'February', value: 5},
var title = chart.title();
title.text('MouseOver the title and click on line series');
lineSeries.listen('pointMouseOut', function (e) {
title.fontColor('#4CAF50');
lineSeries.listen('pointMouseOver', function (e) {
title.fontColor('#F44336');
lineSeries.listen('pointClick', function (e) {
title.text('You can\'t click here anymore');
title.fontColor('#000000');
lineSeries.removeAllListeners();
chart.container('container');