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