anychart.onDocumentReady(function () {
var chart = anychart.line();
chart.padding([10, 20, 0, 10]);
chart.title('The Duration of Work Process on the Project by Month');
['June', 103.54, 8.3, 6],
var series = chart.line(data);
series.hovered().markers(false);
parseInt(this.value - this.valueLowerError) +
parseInt(this.value + this.valueUpperError)
chart.xAxis().title('2015');
chart.yAxis().title('Average Duration in Man-hours');
chart.interactivity().hoverMode('by-x');
chart.tooltip().positionMode('point');
chart.yScale().minimum(0);
chart.container('container');