anychart.onDocumentReady(function () {
var chart = anychart.column();
var series = chart.column(getData());
series.name("Total support requests");
var xZoom = chart.xZoom();
chart.listen("pointClick", function(e) {
e.series.excludePoint(e.pointIndex);
xZoom.setToPointsCount(15);
chart.xScroller().allowRangeChange(false);
xZoom.setToPointsCount(15);
chart.xScroller().autoHide("true");
chart.xAxis().title("Hours");
chart.yAxis().title("Support requests");
chart.title("Amount of support requests by hours");
chart.container("container");