tooltip_action {echarts4r} | R Documentation |
Show & Hide Tooltip
Description
Show or hide tooltip.
Usage
e_showtip(e, ..., btn = NULL)
e_hidetip(e, ..., btn = NULL)
Arguments
e |
An |
... |
Any options, see official documentation |
btn |
A |
Note
The tooltip must be initialised with e_tooltip
for this to work.
Examples
cars |>
e_charts(dist) |>
e_scatter(speed) |>
e_tooltip() |>
e_hidetip(btn = "btn") |>
e_button("btn", "Hide tooltip")
[Package echarts4r version 0.4.5 Index]