是否有使用add_segments()函数创建虚线的方法?
我尝试使用线型,线型,线= list(...),破折号=“破折号”,但似乎没有任何效果。这是一些带有水平线的示例代码。现在,它只是忽略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"))