anychart.onDocumentReady(function () {
var dataSet = anychart.data.set([
{x: 'Physical', value: 125},
{x: 'Data Link', value: 125},
{x: 'Network', value: 125},
{x: 'Transport', value: 125},
{x: 'Session', value: 125},
{x: 'Presentation', value: 125},
{x: 'Application', value: 290, label: {anchor: 'center-top'}}
var chart = anychart.pyramid();
chart.labels({position: 'inside'});
chart.title('Set data parameter as a data set instance');
chart.container('container');