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, ...)

Arguments

ax

A apexcharts htmlwidget object.

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.

Value

A apexcharts htmlwidget object.

Note

See https://apexcharts.com/docs/options/tooltip/

Examples

library(dplyr) data("mpg", package = "ggplot2") # Hide tooltip apex( data = count(mpg, manufacturer, year), mapping = aes(x = manufacturer, y = n, fill = year) ) %>% ax_tooltip(enabled = FALSE) # Share between series apex( data = count(mpg, manufacturer, year), mapping = aes(x = manufacturer, y = n, 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") )