Guest User

Untitled

a guest
Apr 26th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. var Temp = [11,13,14,17,15,19,14,14,17,15,19,16,14];
  2. $('.basementTempSparkline').sparkline(Temp, {
  3. type: 'line',
  4. width: '160',
  5. height: '40'
  6. });
  7.  
  8. var Temp =[];
  9. Temp.push(parseInt(payload));
  10. if (Temp.length >= 20) {
  11. Temp.shift()
  12. }
  13. $('.basementTempSparkline').sparkline(Temp, {
  14. type: 'line',
  15. width: '160',
  16. height: '40'
  17. });
Add Comment
Please, Sign In to add comment