我想更改悬停框在plotly
条形图中的位置。与其在左侧或右侧弹出,不如在栏上方弹出。这可能吗?我一直在谷歌上搜索,并在运气不好的情况下盯着Plotly R参考页面几个小时。
这里是一个示例:
library(dplyr)
library(plotly)
data.frame(x = 1:10, y = 1:10*10) %>%
plotly::plot_ly(data = .) %>%
plotly::add_trace(x = ~x,
y = ~y,
type = 'bar',
hoverinfo = "text",
text = ~y)