tooltip_table {highcharter} | R Documentation |
Helper to make table in tooltips for the pointFormat
parameter in hc_tooltip
tooltip_table(x, y, title = NULL, img = NULL, ...)
x |
A string vector with description text |
y |
A string with accesors ex: |
title |
A title tag with accessor or string |
img |
Img tag |
... |
html attributes for the table element |
x <- c("Income:", "Genre", "Runtime") y <- c("$ {point.y}", "{point.series.options.extra.genre}", "{point.series.options.extra.runtime}") tooltip_table(x, y)