Removing the greyed out look when Shiny updates

When Shiny updates a graph, the graph goes slightly grey. How do I stop this from happening? In particular, I'm thinking of a CSS hack, so the old graph is just replaced with the new graph.


For future readers, I'm aware that this is a complete hack (as the graph is still being generated and the dashboard is on hold), but I just want something quick and dirty.

1 Like

This should do the trick:

tags$style(".recalculating { opacity: inherit !important; }")

somewhere in your UI.

6 Likes