Create an object representing hover options — hoverOpts
hoverOpts(id = NULL, delay = 300, delayType = c("debounce", "throttle"), clip = TRUE, nullOutside = TRUE)
Arguments
id |
Input value name. For example, if the value is |
---|---|
delay |
How long to delay (in milliseconds) when debouncing or throttling, before sending the mouse location to the server. |
delayType |
The type of algorithm for limiting the number of hover
events. Use |
clip |
Should the hover area be clipped to the plotting area? If FALSE, then the server will receive hover events even when the mouse is outside the plotting area, as long as it is still inside the image. |
nullOutside |
If |
Description
This generates an object representing hovering options, to be passed as the
hover
argument of imageOutput()
or
plotOutput()
.