有没有办法使用add_segments()函数来创建一条虚线?
我试过使用linetype, linetypes, line = list(...), dash = "dash",但似乎没有什么效果。下面是一些带有水平线的示例代码。现在它只是忽略了linetype参数。
plot <- plot_ly() %>%
add_segments(x = 1, xend = 10, y = 5, yend = 5, linetype = "dashed")
plot
我有办法解决这个问题,但是我喜欢add_segments的简单性和可读性,所以用它来代替add_lines()会更理想。
plotly::add_segment
没有一个 linetype
参数。你可以像下面一样设置行类型。
library(plotly)
plot_ly() %>%
add_segments(x = 1, xend = 10, y = 5, yend = 5, line = list(dash = "dash"))