bussez Report post Posted November 20, 2015 (edited) Good morning, I would use events to function as the thermometer gauge http://jsfiddle.net/fusioncharts/y0hv49qv/ I would like to see loop temp. MAX, MIN, CURRENT. Example temp changed through math.random but I would use the 3 variables temp taken with php script. I tried without success "Events": { "RenderComplete": function (evt, arg) { var chargeInterval = setInterval (function () { count ++; if (count == 1) { value = <?php echo $max ?>; } if (count == 2) { value =<?php echo $min ?>; } if (count == 3) { value =<?php echo $current ?>; count = 0; } FusionCharts.items ["myThm"]. FeedData ("& value =" + value); }, 3000); thank you!! Edited November 20, 2015 by bussez Share this post Link to post Share on other sites
Gagan Sikri Report post Posted December 8, 2015 Hi Please refer to this JSFiddle sample for value update in thermometer gauge: http://jsfiddle.net/sikrigagan/sbDHL/66/ Share this post Link to post Share on other sites