You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have code that updates my chart with new data every 5 seconds. Each time the data updates, the chart window is brought into focus. I have not figured out a way to update the chart in the background. Is this possible?
Code example
# Some pseudocode to illustrate the issuechart=Chart()
chart.set(...)
awaitchart.show_async() # I have tried both synchronous and asynchronous with the same resultwhileTruechart.update(...). # The chart will be brought into focus on the screen.sleep(5)
The text was updated successfully, but these errors were encountered:
Question
I have code that updates my chart with new data every 5 seconds. Each time the data updates, the chart window is brought into focus. I have not figured out a way to update the chart in the background. Is this possible?
Code example
The text was updated successfully, but these errors were encountered: