anychart.onDocumentReady(function () {
var chart = anychart.column([
{x: 'January', value: 2},
{x: 'February', value: 5},
chart.title('Marquee event types. \nUse mouse to draw marquee');
chart.container('container');
chart.startSelectRectangleMarquee(true);
chart.listen('selectMarqueeChange', function (e) {
chart.title('Rectangle marquee drawing is changed \n Indexes of the points: ' + e.seriesStatus[0].pointsInRect);