anychart.onDocumentReady(function () {
chart = anychart.gauges.linear([0.9, 0.8, 0.7]);
chart.addPointer(0, 1, 2);
chart.title('Disable redrawing of the chart after the changes. \n Use the buttons to apply the changes and draw them');
chart.container('container');
var getData = chart.data();
var newData = getData.concat([Math.random()]);
chart.addPointer(pointer++);