anychart.onDocumentReady(function() { chart = anychart.scatter([ {x: 2, y: 21}, {x: 14, y: 24}, {x: 89, y: 23}, {x: 48, y: 18} ]); chart.xAxis(0, {orientation: "top", title: null}); chart.xAxis(1, {orientation: "bottom", title: "X-Axis"}); chart.xAxis(2, {orientation: "right", title: null}); chart.xAxis(1, false); // disables X-axis by index chart.container("container"); chart.draw(); });