This is apparent on the radar demo.
Code to reproduce:
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, name = "radar") %>%
e_radar(z, max = 7, name = "chart") %>%
e_tooltip(trigger = "item")
Clicking on the first element of the legend, "radar", removes both the "radar" and "chart" series. It should only remove the first series.
This is apparent on the radar demo.
Code to reproduce:
Clicking on the first element of the legend, "radar", removes both the "radar" and "chart" series. It should only remove the first series.