anychart.onDocumentReady(function () {
var dataSet = anychart.data.set();
{name: 'Point 1', value: 10},
{name: 'Point 2', value: 7},
{name: 'Point 3', value: 20},
{name: 'Point 4', value: 14}
var chart = anychart.pie(dataSet);
chart.title('Set data as an array of objects');
chart.container('container');