e_button {echarts4r} | R Documentation |
Button
Description
Add a button to your visualisation.
Usage
e_button(e, id, ..., position = "top", tag = htmltools::tags$button)
Arguments
e |
An |
id |
A valid CSS id. |
... |
Content of the button, complient with |
position |
Position of button, |
tag |
A Valid |
Examples
iris |>
group_by(Species) |>
e_charts(Sepal.Length) |>
e_line(Sepal.Width) |>
e_line(Petal.Length) |>
e_highlight(series_name = "setosa", btn = "myBtn") |>
e_button("myBtn", "highlight stuff")
[Package echarts4r version 0.4.5 Index]