Release 1.0.4
Fixed minor bugs
- Value dial colour now shows for initial value
- Positive min and max values now work correctly (e.g. min: 50, max: 150)
var gauge = Gauge( document.getElementById("gauge2"), {
min: 50, // +ve min value
max: 150,
dialStartAngle: 180,
dialEndAngle: 0,
value: 50, // The color is correctly shown now
color: function(value) {
if(value < 20) {
return "#5ee432";
}else if(value < 40) {
return "#fffa50";
}else if(value < 60) {
return "#f7aa38";
}else {
return "#ef4655";
}
}
}
);