highcharter (version 0.9.4)

hc_tooltip: Tooltip options for highcharter objects

Description

Options for the tooltip that appears when the user hovers over a series or point.

Usage

hc_tooltip(hc, ..., sort = FALSE, table = FALSE)

Arguments

hc

A highchart htmlwidget object.

sort

Logical value to implement sort according this.point https://stackoverflow.com/a/16954666/829971.

table

Logical value to implement table in tooltip: https://stackoverflow.com/a/22327749/829971.

Examples

Run this code
# NOT RUN {
highchart() %>%
  hc_add_series(data = sample(1:12)) %>%
  hc_add_series(data = sample(1:12) + 10) %>%
  hc_tooltip(
    crosshairs = TRUE,
    borderWidth = 5,
    sort = TRUE,
    table = TRUE
  )
# }

Run the code above in your browser using DataLab