File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
libraries/ESP8266WebServer/examples/Graph/data Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 360
360
// Limit its length to maxSamples
361
361
data . splice ( 0 , data . length - maxSamples ) ;
362
362
// Put stats in chart title
363
- heapChart . options . title . text = "Free heap (" + computeStats ( data ) + ")" ;
363
+ heapChart . options . title . text = "Free heap (" + computeStats ( data ) + ") - use mouse wheel or pinch to zoom " ;
364
364
// Remember smallest X
365
365
var minX = data [ 0 ] . x ;
366
366
370
370
// Limit its length to maxSamples
371
371
data . splice ( 0 , data . length - maxSamples ) ;
372
372
// Put stats in chart title
373
- analogChart . options . title . text = "Analog input (" + computeStats ( data ) + ")" ;
373
+ analogChart . options . title . text = "Analog input (" + computeStats ( data ) + ") - use mouse wheel or pinch to zoom " ;
374
374
// Remember smallest X
375
375
if ( data [ 0 ] . x < minX ) minX = data [ 0 ] . x ;
376
376
524
524
fetchNewData ( ) ;
525
525
526
526
</ script >
527
- </ html >
527
+ </ html >
You can’t perform that action at this time.
0 commit comments