<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.waterfall([166, 43, -79, -46, 84, NaN]);
chart.xAxis(0);
chart.xAxis(1, {orientation: "top", title: true});
// Disable X-axis by index.
chart.xAxis(0, false);
chart.title("Disable bottom xAxis by index");
chart.container("container");
chart.draw();
});