When I do this:
max <- list(
name = "Max",
type = "max"
)
iris %>%
group_by(Species) %>%
e_charts(Sepal.Length, timeline = TRUE) %>%
e_line(Sepal.Width) %>%
e_line(Petal.Length) %>%
e_mark_point(data = max)
Only one line has a marked point. Is there a way to give both lines a marked point?
If I switch off the timeline by timeline = FALSE, all the lines have a marked point. So nothing seems to go wrong there. The problem appears when using switching on the timeline.
Many thanks in advance!