密谋:如何更改默认模式栏按钮?

时间:2020-05-17 17:01:14

标签: r plotly config

我正在生成绘图,并使用Shinyapps发布来自本国的COVID数据。

但是当我生成图时默认的模式栏按钮是“缩放”功能,这使其在智能手机上的使用变得复杂

enter image description here

我需要“ Pan”功能是默认按钮,但我可以找到解决方法。

enter image description here

谢谢。

1 个答案:

答案 0 :(得分:2)

只需包括:

fig <- fig %>% layout(dragmode='pan')

这将从...更改默认的激活菜单选项。

enter image description here

...到:

enter image description here

完整代码:

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

我希望这就是您想要的!不要犹豫,让我知道。