anychart.onDocumentReady(function () {
var stage = anychart.graphics.create("container");
var data = [170, 210, 130, 310];
linear = anychart.gauges.linear();
linear.bounds(0, 0, "25%", "100%");
tank = anychart.gauges.tank();
tank.bounds("25%", 0, "25%", "100%");
led = anychart.gauges.led();
led.bounds("50%", 0, "25%", "100%");
thermometer = anychart.gauges.thermometer();
thermometer.addPointer(3);
thermometer.bounds("75%", 0, "25%", "100%");
thermometer.container(stage);