Setup single axis.
Arguments
- e
An
echarts4robject as returned bye_chartsor a proxy as returned byecharts4rProxy.- index
Index of axis to customise.
- ...
Any other option to pass, check See Also section.
Examples
df <- data.frame(
axis = LETTERS[1:10],
value = runif(10, 3, 20),
size = runif(10, 3, 20)
)
df |>
e_charts(axis) |>
e_single_axis() |> # add the single axis
e_scatter(
value,
size,
coord_system = "singleAxis"
)
