anychart.onDocumentReady(function () {
var chart = anychart.column();
var xScroller = chart.xScroller();
xScroller.autoHide("true");
xScroller.fill("#33CC33");
xScroller.selectedFill("#339966");
xScroller.outlineStroke("#33CC33");
chart.xZoom().setToPointsCount(15);
var series = chart.column(getData());
series.name("Total support requests");
chart.xAxis().title("Hours");
chart.yAxis().title("Support requests");
chart.title("Amount of support requests by hours");
chart.container("container");