anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
var data1 = dataSet.mapAs({'x': 0, 'value': 1});
var data2 = dataSet.mapAs({'x': 0, 'value': 2});
chart = anychart.column();
chart.title('Set the type of event to start/end the animation');
chart.container('container');
chart.listen('animationStart', function(e) {
chart.getSeries(0).getPoint(0).selected(true);
chart.listen('animationEnd', function(e) {
chart.getSeries(0).getPoint(5).selected(true);