<div id="container"></div>
html, body, #container {
width: 100%;
height: 100%;
margin: 0;
padding: 0;
}
anychart.onDocumentReady(function () {
var chart = anychart.column([
{x: 'Meat', value: 10},
{x: 'Fruit', value: 12},
{x: 'Nuts', value: 18},
{x: 'Milk', value: 5},
{x: 'Fish', value: 9}
]);
// Set X-axis by index
chart.xAxis(0, {orientation: 'top'});
chart.xAxis(1, {title: true});
chart.title('Set xAxis parameters as an object by index');
chart.container('container');
chart.draw();
});