anychart.onDocumentReady(function () {
var chart = anychart.column(data);
chart.yAxis().orientation("right");
chart.xAxis().orientation("top");
chart.yAxis().title("Y Axis title on the right");
chart.xAxis().title("X Axis title on the top");
chart.container("container");