Hi and thanks for reading me. Im working on a echarts plot in R and I want to show the label of the vars but only in every 2 or 3 bars, because i don't want it to look too saturated with information
I haven't found a working argument to e_labels(), could someone help me?
My code is the following:
library(echarts4r)
mtcars |>
tibble::rownames_to_column("model") |>
e_charts(model) |>
e_bar(cyl) |>
e_legend(F) |>
e_labels()