anychart.onDocumentReady(function () {
var chart = anychart.column();
header: ['#', 'Florida', 'Texas', 'Arkansas'],
chart.interactivity().hoverMode('by-x');
var title = chart.title();
title.text('PointsHover event');
chart.listen('pointsHover', function(e) {
title.text('The mouse hovers over the points with name ' + e.point.get('x'))
chart.container('container');