e_radar_opts: Radar axis

View source: R/grid.R

e_radar_optsR Documentation

Radar axis

Description

Radar axis setup and options.

Usage

e_radar_opts(e, index = 0, ...)

Arguments

e

An echarts4r object as returned by e_charts or a proxy as returned by echarts4rProxy.

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")

echarts4r documentation built on July 9, 2023, 7:26 p.m.