anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var title = anychart.standalones.title();
title.parentBounds(0, 0, stage.width(), stage.height()*0.1);
title.text("Minimum/Maximum Gap Samples");
title.container(stage).draw();
var chart1 = anychart.column(data);
chart1.title("Gap Sample");
chart1.bounds(0, "15%", "50%", "85%");
chart1.yScale().minimumGap(1);
chart1.yScale().maximumGap(1);
var chart2 = anychart.column(data);
chart2.title("Sample without Gap");
chart2.bounds("50%", "15%", "50%", "85%");