joewalnes / smoothie

Smoothie Charts: smooooooth JavaScript charts for realtime streaming data
http://smoothiecharts.org
Other
2.24k stars 229 forks source link

Filter NaN #115

Closed timdrysdale closed 4 years ago

timdrysdale commented 4 years ago

Re #114, append() has been modified so that it rejects a point when the time or value is NaN. Previously, points containing NaN could be added, which did not seem to affect operation visibly, but did cause the timeseries to grow without bound when a time of NaN was added. This mod has been tested by forcing append(NaN,), append(

drewnoakes commented 4 years ago

Thanks for this.