I have my Google Gauge working but would like to change the range.
The default is 0 to 100.
I would like different lower and upper range E.G. -15 to 115 for temperature gauge.
How do I set the bottom and top ranges? Here is my current code: $vt is the temperature when the gauge displays
Gauge::create(array(
"title"=>"Maloof Temperature",
"height"=>"200px",
"dataSource"=>array(
array("label"=>"Temperature","value"=>$vt),
),
"columns"=>array(
"label",
"value"=>array(
"suffix"=>" (F)",
)
)
));
Thanks for any help you can give.
Dennis