Description Usage Arguments Examples
View source: R/highcharts-api.R
Options for the tooltip that appears when the user hovers over a series or point.
1 |
hc |
A |
... |
Arguments defined in https://api.highcharts.com/highcharts/tooltip. |
sort |
Logical value to implement sort according |
table |
Logical value to implement table in tooltip: https://stackoverflow.com/a/22327749/829971. |
1 2 3 4 5 6 7 8 9 | 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
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.