Как мы можем изменить направление выпадающего меню в графике R?Пример кода https://gist.github.com/AliciaSchep/beca4cd1145b8caf7c8136e5979039b4
Сюжет Python имеет direction = 'up'
.Я также проверил через элементы сюжетного вывода.Не могу найти его.
library(plotly)
plot_ly(mtcars, x = ~wt) %>%
add_markers(y = ~mpg, name = "mpg") %>%
add_markers(y = ~hp, name = "hp", visible = FALSE) %>%
layout(
title = "Drop down menus - Update",
xaxis = list(domain = c(0.1, 1)),
yaxis = list(title = "mpg"),
showlegend = FALSE,
updatemenus = list(
list(
y = 0.7,
buttons = list(
list(method = "update",
args = list(list(visible = list(TRUE, FALSE)),
list(yaxis = list(title = "mpg"))),
label = "mpg"),
list(method = "update",
args = list(list(visible = list(FALSE, TRUE)),
list(yaxis = list(title = "hp"))),
label = "hp")))
)
)