plotly::add_segment中的虚线。

问题描述 投票:1回答:1

有没有办法使用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()会更理想。

r plotly r-plotly
1个回答
1
投票

plotly::add_segment 没有一个 linetype 参数。你可以像下面一样设置行类型。

library(plotly)

plot_ly() %>%
  add_segments(x = 1, xend = 10, y = 5, yend = 5, line = list(dash = "dash"))

© www.soinside.com 2019 - 2024. All rights reserved.