anychart.onDocumentReady(function () {
var chart = anychart.gauges.linear([15, 20, 25, 30, 44]);
var thermometer = chart.thermometer(2);
thermometer.fill('#ff4040', 0.3);
chart.width(600).height(400);
chart.title('Set pointer fill parameter as an array');
chart.container('container');