anychart.onDocumentReady(function () {
var chart = anychart.line();
chart.xZoom().setToPointsCount(10, true);
var series = chart.column(getData());
series.name("New users");
chart.xAxis().title("Month");
chart.yAxis().title("New users");
chart.title("New internet users \nLimit the shown points' number to 10");
chart.container("container");