只需包括:
fig <- fig %>% layout(dragmode='pan')
这将从...更改默认的激活菜单选项。
...到:
完整代码:
x <- c(1:100)
random_y <- rnorm(100, mean = 0)
data <- data.frame(x, random_y)
fig <- plot_ly(data, x = ~x, y = ~random_y, type = 'scatter', mode = 'lines')
fig <- fig %>% layout(dragmode='pan')
fig
我希望这就是您想要的!不要犹豫,让我知道。