anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container", 600, 400);
var chart = anychart.gauges.linear([15, 20, 25, 30, 44]);
chart.addPointer(4, 3, 2, 1, 0);
chart.axis(0, {offset: "-11%"});
var gaugeScale = chart.scale();
gaugeScale.inverted(true);
chart.title("Get and modify scale.");