anychart.onDocumentReady(function () {
var chart = anychart.column();
var series = chart.column();
{x: 'Point 1', value: 18},
{x: 'Point 2', value: 25},
{x: 'Point 3', value: 10},
{x: 'Point 4', value: 20},
{x: 'Point 5', value: 35},
{x: 'Point 6', value: 23},
{x: 'Point 7', value: 14},
{x: 'Point 8', value: 50}
chart.title('Set data as an array of objects');
chart.container('container');