| ax_tooltip | R Documentation | 
Tooltip options
ax_tooltip(
  ax,
  enabled = NULL,
  shared = NULL,
  followCursor = NULL,
  intersect = NULL,
  inverseOrder = NULL,
  custom = NULL,
  fillSeriesColor = NULL,
  onDatasetHover = NULL,
  theme = NULL,
  x = NULL,
  y = NULL,
  z = NULL,
  marker = NULL,
  items = NULL,
  fixed = NULL,
  ...
)
| ax | An  | 
| enabled | Logical. Show tooltip when user hovers over chart area. | 
| shared | Logical. When having multiple series, show a shared tooltip. | 
| followCursor | Logical. Follow user's cursor position instead of putting tooltip on actual data points. | 
| intersect | Logical. Show tooltip only when user hovers exactly over datapoint. | 
| inverseOrder | Logical. In multiple series, when having shared tooltip, inverse the order of series (for better comparison in stacked charts). | 
| custom | JS function. Draw a custom html tooltip instead of the default one based on the values provided in the function arguments. | 
| fillSeriesColor | Logical. When enabled, fill the tooltip background with the corresponding series color. | 
| onDatasetHover | A list of parameters. | 
| theme | A list of parameters. | 
| x | A list of parameters. | 
| y | A list of parameters. | 
| z | A list of parameters. | 
| marker | A list of parameters. | 
| items | A list of parameters. | 
| fixed | A list of parameters. | 
| ... | Additional parameters. | 
An apexchart() htmlwidget object.
See https://apexcharts.com/docs/options/tooltip/
data("mpg", package = "ggplot2")
# Hide tooltip
apex(
  data = mpg,
  mapping = aes(x = manufacturer, fill = year)
) %>% 
  ax_tooltip(enabled = FALSE)
# Share between series
apex(
  data = mpg,
  mapping = aes(x = manufacturer, fill = year)
) %>% 
  ax_tooltip(shared = TRUE)
# Fixed tooltip
data("economics", package = "ggplot2")
apex(
  data = economics,
  mapping = aes(x = date, y = psavert),
  type = "line"
) %>% 
  ax_tooltip(
    fixed = list(enabled = TRUE, position = "topLeft")
  )
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.