echarts4r
echarts4r copied to clipboard
does e_mark_point support adding a singple point like(x, y) instead of functional point like max, min?
I tried this, but it shows no mark point.
point <- list( name = 'screen coordinate', x=10, y=5.4 )
mtcars |> e_charts(mpg) |> e_line(wt) |> e_mark_point("wt", data = point)
data should be a list of lists
data <- list(list(
name = "point",
x = 1,
y = 1
))
Docs on data for point is here