anychart.onDocumentReady(function () {
['Sep 2011', 75, 75, 75],
['Oct 2011', 73, 90, 90],
['Nov 2011', 94, 94, 94],
['Dec 2011', 67, 77, 77],
['Jan 2012', 68, 78, 78],
['Feb 2012', 88, 78, 78],
['Mar 2012', 79, 89, 89],
var chart = anychart.column();
chart.title('Cumulative progress of work');
yAxis.ticks().enabled(false);
chart.yScale().maximum(100);
chart.yGrid().stroke('#fff .7').zIndex(1000);
chart.labels().enabled(true).anchor('center-top').fontColor('#fff');
chart.labels().zIndex(9000);
chart.container('container');