ui_tooltip {periscope2}R Documentation

Add tooltip icon and text to UI elements labels

Description

This function inserts a standardized tooltip image, label (optional), and hovertext into the application UI

Usage

ui_tooltip(id, label = "", text = "", placement = "top")

Arguments

id

The id for the tooltip object

label

Text label to appear to the left of the tooltip image

text

Tooltip text shown when the user hovers over the image

placement

Where to display tooltip label. Available places are "top", "bottom", "left", "right" (default is "top")

Value

html span with the label, tooltip image and tooltip text

Shiny Usage

Call this function from program/ui_body.R to set tooltip parameters

See Also

periscope2:add_ui_footer()

periscope2:add_ui_left_sidebar()

periscope2:add_ui_header()

periscope2:add_ui_body()

periscope2:add_ui_right_sidebar()

periscope2:set_app_parameters()

periscope2:ui_tooltip()

periscope2:get_url_parameters()

Examples

  library(shiny)
  library(periscope2)

  # Inside ui_body.R or similar UI file
   ui_tooltip(id   = "top_tip",
             label = "Top Tooltips",
             text  = "Top tooltip")


[Package periscope2 version 0.2.3 Index]