| e_radar_opts {echarts4r} | R Documentation | 
Radar axis
Description
Radar axis setup and options.
Usage
e_radar_opts(e, index = 0, ...)
Arguments
e | 
 An   | 
index | 
 Index of axis to customise.  | 
... | 
 Any other option to pass, check See Also section.  | 
Examples
df <- data.frame(
  x = LETTERS[1:5],
  y = runif(5, 1, 5),
  z = runif(5, 3, 7)
)
df |>
  e_charts(x) |>
  e_radar(y, max = 7) |>
  e_radar(z) |>
  e_radar_opts(center = c("25%", "25%")) |>
  e_tooltip(trigger = "item")
[Package echarts4r version 0.4.5 Index]