Is it possible to remove/hide the busy indicator

Hello All,

For me sometimes the busy indicator keeps flickering and is quite disturbing top the eye.
Therefore I would like to know if there is any possibility to remove/hide it.

Thank you!

Regards,
Sorin

Do you have --autoreload on? If you have this should be fixed in panel v0.14.0 so that it is not flickering as much.

@Hoxbro, I do have autoreload on, but still I would be interested to remove it, if possible.

You should be able to set busy_indicator=None when constructing the template. However I’m not sure that’s currently allowed so you may have to modify the parameter first to allow None.

from panel.template.base import BasicTemplate

BasicTemplate.param.busy_indicator.allow_None=True
1 Like

@philippjfr, thank you - it seems to work.

1 Like