anychart.onDocumentReady(function () {
chart = anychart.pyramid([0.1, 0.3, 0.2, 0.4]);
chart.labels(false).legend(false);
chart.title('Disable redrawing of the chart after the changes. Use the buttons to apply the changes and draw them');
chart.container('container');
var getData = chart.data();
var newData = getData.concat([Math.random()]);