Customise radius axis.
Arguments
- e
An
echarts4r
object as returned bye_charts
or a proxy as returned byecharts4rProxy
.- serie
Serie to use as axis labels.
- show
Whether to display the axis.
- ...
Any other option to pass, check See Also section.
Examples
df <- data.frame(x = LETTERS[1:10], y = seq(1, 20, by = 2))
df |>
e_charts(x) |>
e_polar() |>
e_angle_axis() |>
e_radius_axis(x) |>
e_bar(y, coord_system = "polar")