anychart.onDocumentReady(function () {
var chart = anychart.column();
chart.title("Hiding the First and the Last labels");
chart.xAxis().staggerMode(true);
chart.xAxis().staggerLines(2);
chart.xAxis().drawFirstLabel(false);
chart.xAxis().drawLastLabel(false);
chart.container("container");