highcharter (version 0.9.4)

tooltip_table: Helper for make table in tooltips

Description

Helper to make table in tooltips for the pointFormat parameter in hc_tooltip

Usage

tooltip_table(x, y, title = NULL, img = NULL, ...)

Arguments

x

A string vector with description text

y

A string with accessors example: point.series.name, point.x

title

A title tag with accessors or string

img

Image tag

...

html attributes for the table element

Examples

Run this code
# NOT RUN {
x <- c("Income:", "Genre", "Runtime")
y <- c(
  "$ {point.y}", "{point.series.options.extra.genre}",
  "{point.series.options.extra.runtime}"
)

tooltip_table(x, y)
# }

Run the code above in your browser using DataCamp Workspace