anychart.onDocumentReady(function () {
var chart = anychart.column();
var series = chart.column([
{x: 'Cycling', value: 10},
{x: 'Swimming', value: 12},
{x: 'Hiking', value: 11},
{x: 'Alpinism', value: 9}
var title = chart.title();
title.text('Hover on the column series');
series.listen('pointmouseover', function (e) {
title.text('Point index is ' + e.pointIndex);
series.listen('pointmouseout', function (e) {
chart.container('container');