I want to create and display a google gauge chart on a webpage for a remote monitoring program I am developing. I am using an eWON Flexy 201 to do this. I am just having trouble getting the gauge to display on the webpage.
Basically what I have to do is use a form of VBScript on the server to grab the oil temperature and return that value to the gauge to display the temperature. I have been able to return that value to the page in various ways correctly, however I am having trouble displaying and updating the gauge every second like I want to.
In the current script I am receiving no errors in the console, however nothing is rendering. I get just a blank space where the gauge should appear.
<script type='text/javascript'>
google.load('visualization', '1', {packages:['gauge']});
google.setOnLoadCallback(drawChart);
function drawChart() {
var x = '<%#TagSSI,Target_Pressure_Setting%>';
var data = new google.visualization.DataTable([
['Label', 'Value'],
['Oil Temp', x],
]);
var options = {
width: 450, height: 240,
greenFrom: 100, greenTo: 150,
redFrom: 275, redTo: 325,
yellowFrom:225, yellowTo: 275,
minorTicks: 5,
max: 350
};
var chart = new google.visualization.Gauge(document.getElementById('chart_div'));
function refreshData () {
var json = $.ajax({
url: 'gauge.shtm', // make this url point to the data file
dataType: 'number',
async: true
}).responseText;
//alert(json)
data = new google.visualization.DataTable(json);
chart.draw(data, options);
}
refreshData();
setInterval(refreshData, 1000);
}
</script>
and here is the gauge.shtm
file
<%#TagSSI,Oil_Temp%>