我想在Plotly对象的顶部使用上下文菜单(jQuery contextMenu)。 问题是,当我使用 Box -或 Lasso -select工具选择多个元素,然后右键单击栏时,会触发该元素上的click事件条,先前的选择将丢失。
如何防止在Plotly对象上发生右键单击,因此仅左键单击会触发单击/选择事件,而右键单击仅保留用于打开上下文菜单? < / p>
发光的应用程序:
library(shiny)
library(ggplot2)
library(plotly)
dfN <- data.frame(
time_stamp = seq.Date(as.Date("2018-04-01"), as.Date("2018-07-30"), 1),
val = runif(121, 100,1000),
col = "green", stringsAsFactors = F
)
jsCode = HTML('
$(document).on("shiny:connected", function() {
$(function() {
$.contextMenu({
selector: "#plot",
callback: function(key, options) {
switch(key){
case "copy":
console.log("Contextmenu: Copy was clicked");
break;
case "paste":
console.log("Contextmenu: Paste was clicked");
break;
}
},
items: {
copy: {name: "copy", icon: "copy"},
"paste": {name: "paste", icon: "paste"}
}
});
});
});')
ui <- fluidPage(
tags$head(tags$script(src="https://cdnjs.cloudflare.com/ajax/libs/jquery-contextmenu/2.7.1/jquery.contextMenu.min.js")),
tags$head(tags$script(src="https://cdnjs.cloudflare.com/ajax/libs/jquery-contextmenu/2.7.1/jquery.ui.position.js")),
tags$head(tags$link(rel="stylesheet", href="https://cdnjs.cloudflare.com/ajax/libs/jquery-contextmenu/2.7.1/jquery.contextMenu.min.css")),
tags$head(tags$script(jsCode)),
plotlyOutput("plot")
)
server <- function(input, output, session) {
output$plot <- renderPlotly({
key <- highlight_key(dfN)
p <- ggplot() +
geom_col(data = key, aes(x = plotly:::to_milliseconds(time_stamp), y = val, fill=I(col)))
ggplotly(p, source = "Src") %>%
layout(xaxis = list(type = "date")) %>%
highlight(off = "plotly_doubleclick", on = "plotly_click", color = "blue",
opacityDim = 0.5, selected = attrs_selected(opacity = 1))
})
}
shinyApp(ui, server)
答案 0 :(得分:0)
我找到了一个解决方案,该解决方案需要更改plotly包的基础plotly.js
文件。
常规点击存储为d.event.buttons = 1
,显然右键单击存储为d.event.buttons = 2
。
因此在本节中
graphDiv.on('plotly_click', function(d) {
});
我插入了一个if条件来检查event.buttons
是否为1,否则将不会发出点击。
这适用于当前的CRAN版本的plotly,现在dev-version有所不同。
if (d.event.buttons == 1) {
// Normal Clicks
Shiny.setInputValue(
".clientValue-plotly_click-" + x.source,
JSON.stringify(eventDataWithKey(d))
);
graphDiv._shiny_plotly_click = d;
}