1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/interact_tooltip.R
\name{show_tooltip}
\alias{show_tooltip}
\alias{hide_tooltip}
\title{Send a message to the client to show or hide a tooltip}
\usage{
show_tooltip(session, l = 0, t = 0, html = "")
hide_tooltip(session)
}
\arguments{
\item{session}{A Shiny session object.}
\item{l}{Pixel location of left edge of tooltip (relative to page)}
\item{t}{Pixel location of top edge of tooltip (relative to page)}
\item{html}{HTML to display in the tooltip box.}
}
\description{
Send a message to the client to show or hide a tooltip
}
|