anychart.onDocumentReady(function() {
var stage = anychart.graphics.create("container");
data = anychart.data.set([
seriesData_1 = data.mapAs({x: [0], value: [1]});
seriesData_2 = data.mapAs({x: [0], value: [2]});
rotatedLabels = anychart.column();
rotatedLabels.title("Rotated labels");
rotatedBackground = rotatedLabels.background();
rotatedBackground.stroke("#CCCCCC");
rotatedYScale = rotatedLabels.yScale();
rotatedYScale.minimum(0);
rotatedXAxis = rotatedLabels.xAxis().labels();
rotatedXAxis.rotation(-90);
rotatedYAxis = rotatedLabels.yAxis().labels();
rotatedYAxis.rotation(-90);
rotatedLabels.column(seriesData_1);
rotatedLabels.column(seriesData_2);
rotatedLabels.container(stage);