I want to create bullet charts with {echarts4r}. What I have is this:
library(echarts4r)
library(dplyr)
mtcars[1:5,] |>
tibble::rownames_to_column("model") |>
mutate(total = mpg + qsec) |>
arrange(desc(total)) |>
e_charts(model) |>
e_bar(mpg, stack = "grp", barWidth = "90%", barCategoryGab = "20%") |>
e_bar(qsec, stack = "grp") |>
e_bar(gear, stack = "grp2", barWidth = "45%") |>
e_flip_coords()
How can I put the third e_bar() in front of the other stack?
Any help appreciated.

I found an example solution here
and adapted it to
{echarts4r}