我在闪亮的仪表板上有两个情节。当我点击第一个情节图时,交互式事件工作正常。但是当我在第二个图(堆叠条形图)上执行相同的操作时,窗口会自动关闭。
您是否遇到过带有多个情节的闪亮仪表板?如果是,如何处理不同情节图上的点击事件?
我正在准备可重现的用例。很快我会发布它。
library(shinydashboard)
library(plotly)
library(shiny)
library(dplyr)
library(ggplot2)
tg <- ToothGrowth
tg$dose <- factor(tg$dose)
skin <- Sys.getenv("DASHBOARD_SKIN")
skin <- tolower(skin)
if (skin == "")
skin <- "blue"
sidebar <- dashboardSidebar(
sidebarSearchForm(label = "Search...", "searchText", "searchButton"),
sidebarMenu(
menuItem("Dashboard", tabName = "dashboard", icon = icon("dashboard"))
)
)
body <- dashboardBody(
tabItems(
tabItem("dashboard",
fluidRow(
box(
title = "Distribution",
status = "primary",
plotlyOutput("plot1", height = "auto"),
height = 500,
width = 7
),
box(
height = 500, width = 5,
title = "Dist",
plotlyOutput("click", height = 430)
)
)
)
))
header <- dashboardHeader(
title = "My Dashboard"
)
ui <- dashboardPage(header, sidebar, body, skin = skin)
server <- function(input, output, session) {
output$plot1 <- renderPlotly({
p <- ggplot(data = tg, aes(x=len, y=dose, col=supp, key=supp)) + geom_point()
ggplotly(p)
})
output$click <- renderPlotly({
d <- event_data("plotly_click")
if (is.null(d)){
"Click events appear here (double-click to clear)"
} else {
gSel <- tg %>% filter(dose %in% d$y) %>% group_by(supp) %>% mutate(newLen=floor(len)) %>%
ggplot(aes(x=supp, fill=as.factor(newLen))) + geom_bar()
ggplotly(gSel)
}
})
}
shinyApp(ui, server)
如何避免上图中的可用错误?绘图输出区域中的文本打印。
第一个图用于迭代点击事件。当我单击一个点时y=1
,它会产生第二个图
但是当我单击堆叠条时,第二个图丢失(在我的原始场景中,窗口关闭且不可见。要使用该应用程序,我需要重新运行该应用程序)。
如何接收点击事件并检查它是来自第一个情节还是第二个情节?