anychart.onDocumentReady(function () {
var chart = anychart.line();
chart.xZoom().setToPointsCount(10, true);
chart.xZoom().continuous(false);
var series = chart.column(getData());
series.name("New users");
chart.xAxis().title("Month");
chart.yAxis().title("New users");
chart.title("New internet users \nPrevent scrolling");
chart.container("container");