anychart.onDocumentReady(function() {
var stage = anychart.graphics.create("container");
labelsInside = anychart.scatter();
line = labelsInside.line([
labelsInside.title("Labels Inside");
innerBackground = labelsInside.background();
innerBackground.stroke("#CCCCCC");
innerXTicks = labelsInside.xScale().ticks();
innerLabels = labelsInside.xAxis().labels();
innerLabels.offsetY(-30);
labelsInside.yAxis(false);
labelsInside.container(stage);