Skip to content

Files

Latest commit

a76742f · May 18, 2017

History

History

plot-spinner

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
May 8, 2016
May 18, 2017
Aug 30, 2016
May 10, 2016

Show a spinning "loading" animation while a plot is recalculating

Update: There is now a package shinycssloaders to do this easier!

When a Shiny plot is recalculating, the plot gets grayed out. This app shows how you can add a spinner wheel on top of the plot while it is recalculating, to make it clear to the user that the plot is reloading. There can be many different ways to achieve a similar result using different combinations of HTML/CSS, this example is just the simplest one I came up with.

The idea is to place a spinner image in the same container as the plot, center it, and give it a below-default z-index. Whenever the plot is recalculting, make the plot's z-index even lower so that the spinner will show.

See a real shiny app where I used this concept


Demo