How to disable page load spinner for dcc Interval

Hi there,

I am trying to use dcc.Interval to capture some real-time data points. However, the page shows the loading spinner every time the interval component triggers the callback. Currently the callback runs every 5 seconds.This is confusing for users as they may think something hasn’t finished loading on their screen. Is there a way to improve this experience?

Thanks,
Meg

Hi Meg,

Did you find a solution to this?

Hey @kelly_gfc ,

Are you referring to the update_title?

app = dash.Dash(__name__, update_title=None)  # remove "Updating..." from title

No I’m not. I’m referring to how to disable the loading component when using dcc.interval.