Is it possible to change e_line opacity in echarts4r?
Advertisements I would like to change the opacity of the line in my plot made with echarts4r. This is what I tried to do library(quantmod) library(echarts4r) getSymbols("GS") #Goldman Sachs GS <- as.data.frame(GS) GS$date <- row.names(GS) GS$level <- 200 GS |> e_charts(date) |> e_candle(GS.Open, GS.Close, GS.Low, GS.High, name = "Goldman Sachs") |> e_datazoom(type = "slider") |>… Read More Is it possible to change e_line opacity in echarts4r?