【发布时间】:2019-12-02 16:05:57
【问题描述】:
我刚刚开始使用rintrojs 包,我想将它与shinydashboard 包混合使用。特别是我想迈出一步:
- 侧边栏,
- 标题(图中蓝色)
- 允许关闭和打开侧边栏的按钮(我在图片中用红色包围)
我尝试从他们 github 页面上的示例开始,并在侧边栏添加第六步,但它返回了一个错误
library(rintrojs)
library(shiny)
library(shinydashboard)
# Define UI for application that draws a histogram
ui <- shinyUI(
dashboardPage(
dashboardHeader(title = "Basic dashboard"),
introBox(dashboardSidebar(
),data.step = 6,
data.intro = 'This is the sidebar'),
dashboardBody(
fluidPage(
introjsUI(),
# Application title
introBox(
titlePanel("Old Faithful Geyser Data"),
data.step = 1,
data.intro = "This is the title panel"
),
# Sidebar with a slider input for number of bins
sidebarLayout(sidebarPanel(
introBox(
introBox(
sliderInput(
"bins",
"Number of bins:",
min = 1,
max = 50,
value = 30
),
data.step = 3,
data.intro = "This is a slider",
data.hint = "You can slide me"
),
introBox(
actionButton("help", "Press for instructions"),
data.step = 4,
data.intro = "This is a button",
data.hint = "You can press me"
),
data.step = 2,
data.intro = "This is the sidebar. Look how intro elements can nest"
)
),
# Show a plot of the generated distribution
mainPanel(
introBox(
plotOutput("distPlot"),
data.step = 5,
data.intro = "This is the main plot"
)
))
)
)
)
)
# Define server logic required to draw a histogram
server <- shinyServer(function(input, output, session) {
# initiate hints on startup with custom button and event
hintjs(session, options = list("hintButtonLabel"="Hope this hint was helpful"),
events = list("onhintclose"=I('alert("Wasn\'t that hint helpful")')))
output$distPlot <- renderPlot({
# generate bins based on input$bins from ui.R
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = input$bins + 1)
# draw the histogram with the specified number of bins
hist(x,
breaks = bins,
col = 'darkgray',
border = 'white')
})
# start introjs when button is pressed with custom options and events
observeEvent(input$help,
introjs(session, options = list("nextLabel"="Onwards and Upwards",
"prevLabel"="Did you forget something?",
"skipLabel"="Don't be a quitter"),
events = list("oncomplete"=I('alert("Glad that is over")')))
)
})
# Run the application
shinyApp(ui = ui, server = server)
tagAssert(sidebar, type = "aside", class= "main-sidebar") 中的错误: 预期标签的类型放在一边
第二个问题:是否可以在一个独特的 rintrojs 演示文稿中在侧边栏的不同菜单项之间导航?
【问题讨论】:
标签: r shiny shinydashboard intro.js