A B (Takumi Lee)
unread,Nov 10, 2024, 5:33:52 PM11/10/24Sign in to reply to author
Sign in to forward
You do not have permission to delete messages in this group
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to Smoothie Charts
Hi,
First of all I would like to thank you for this very good JS librar :)
My current concern is to pause the stream, which I found.
var isRunning = true
document.getElementById("button").onclick = function () {
if (isRunning) chart.stop()
else chart.start()
isRunning = !isRunning
}
After pausing, I want to view the signal with the tooltip. Unfortunately, it doesn't work :(
Best regards
Aaron