h5chart Wiki
Status: Beta
Brought to you by:
lenysoft
Numeric Digital Panel.
Can customize every range color, animation (blink or not) animation counter , digits and decimal count.
When current numeric data is into the range, the panel use the range definition and displays the data.
var l=new DigitalMeter();
l.set( {
left : 40,
top : 40,
width: 150,
height: 50,
digits: 4,
decimals: 1,
current: -20.6,
signed: true,
background: true,
animate: true,
animateCounter: 20
});
l.serie.add({value:10,color:"#FA0000",blink : true});
l.serie.add({value:20,color:"#F0F000",blink : true});
l.serie.add({value:30,color:"#00FA00"});
l.draw(canvasId);