h5chart Wiki
Status: Beta
Brought to you by:
lenysoft
Led Matrix can display numeric and alphanumeric information in one row.
Can customize every range color, message, animation (blink, Right to left movement or static)
and animation counter.
When current numeric data is into the range, the matrix displays the message whith the
designed color and animation.
var l=new LedMatrixMeter();
l.set( {
left : 40,
top : 40,
width: 200,
height: 40,
current: .5,
animate: true,
animateCounter: 20});
l.serie.add({value:10,color:"green",message:'Val OK'});
l.serie.add({value:20,color:"#808000",animateType: 'RL',message:'Warning'});
l.serie.add({value:30,color:"red",animateType: 'blink',message:'Danger'});
l.draw(canvasId);