e_labels {echarts4r} | R Documentation |
Format labels
Description
Format labels
Usage
e_labels(e, show = TRUE, position = "top", ...)
Arguments
e |
An |
show |
Set to |
position |
Position of labels, see official documentation for the full list of options. |
... |
Any other options see documentation for other options. |
Examples
mtcars |>
e_chart(wt) |>
e_scatter(qsec, cyl) |>
e_labels(fontSize = 9)
mtcars |>
group_by(cyl) |>
e_chart(wt) |>
e_scatter(qsec, mpg) |>
e_labels(fontSize = 9)
# timeline
mtcars |>
group_by(cyl) |>
e_chart(wt) |>
e_scatter(qsec, mpg) |>
e_labels(fontSize = 9)
[Package echarts4r version 0.4.5 Index]