anychart.onDocumentReady(function () {
var chart = anychart.gauges.linear([15, 20, 25, 30, 44]);
var thermometer = chart.thermometer(2);
thermometer.stroke('3 #4CAF50');
var stroke = thermometer.stroke();
chart.width(600).height(400);
chart.title({fontColor: stroke.color, text: 'Get and use pointer stroke'});
chart.container('container');