有没有一种方法可以将弹出窗口悬停在上方时将“绘制悬停”文本设置为继续显示?

时间:2019-05-10 21:04:02

标签: r shiny plotly r-plotly

我正在与R中的Plotly合作开发Shiny Web应用程序。我整理了一个交互式散点图,并用我想要的信息配置了悬浮文本。

我的实现如下:

plot_ly(data=partition, 
          x=~get(x), 
          y=~get(y), 
          color=~SenderS,
          colors="Set1",
          text=~paste("Link(s): <a href='", partition$Link,"'>", partition$Link, "</a>",
                      "<br>Date: ", partition$Date,
                      "<br>Parties: ", partition$SenderS, " to ", partition$Target,
                      "<br>", x_og, ": ", partition[,x],
                      "<br>", y_og, ": ", partition[,y])
          )%>%
    layout(title=~paste(x_og, " vs. ", y_og, 
                        "<br>R=", cor(partition[,x], partition[,y])),
           xaxis=list(
             title=x_og
           ),
           yaxis=list(
             title=y_og
           ))

在弹出窗口中,我有一个链接,希望用户可以导航到该链接。不幸的是,一旦用户将鼠标悬停在当前弹出窗口上,它就会消失,因为他们不再将鼠标悬停在该点上。

是否可以配置Plotly悬浮文本,以便我的用户能够单击链接?或者,也许我可以单击散点图中的一个点来打开链接吗?

1 个答案:

答案 0 :(得分:0)

这是一个散点图,其中的点在单击时会打开链接:

library(plotly)
library(htmlwidgets) # to use the 'onRender' function

dat <- iris[1:2,]
urls <- c("http://google.com", "https://stackoverflow.com")

p <- plot_ly(dat, type = "scatter", mode = "markers",
             x = ~Sepal.Width, y = ~Sepal.Length, 
             customdata = urls)

js <- "
function(el, x) {
  el.on('plotly_click', function(d) {
    var point = d.points[0];
    var url = point.data.customdata[point.pointIndex];
    window.open(url);
  });
}"

p %>% onRender(js)

enter image description here