- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
有没有办法更改指示 shinydashboard tabBox 的事件选项卡的颜色?我已将仪表板的“皮肤”更改为“红色”。虽然这会影响侧边栏突出显示的事件选项卡,但它似乎对 tabBox 中的选定选项卡没有影响。
我只找到了更改所选选项卡的实际背景颜色的解决方案(例如 Shinydashboard - Change background based on selected tab ),但是,我找不到任何关于 tabBox 中所选选项卡顶部的小线的信息。在我的示例中,选定的选项卡(Tab1、Tab3、Tab1)应该有一个红色指示器,而不是现在的蓝色指示器。
library(shiny)
library(shinydashboard)
#>
#> Attaching package: 'shinydashboard'
#> The following object is masked from 'package:graphics':
#>
#> box
body <- dashboardBody(
fluidRow(
tabBox(
title = "First tabBox",
# The id lets us use input$tabset1 on the server to find the current tab
id = "tabset1", height = "250px",
tabPanel("Tab1", "First tab content"),
tabPanel("Tab2", "Tab content 2")
),
tabBox(
side = "right", height = "250px",
selected = "Tab3",
tabPanel("Tab1", "Tab content 1"),
tabPanel("Tab2", "Tab content 2"),
tabPanel("Tab3", "Note that when side=right, the tab order is reversed.")
)
),
fluidRow(
tabBox(
# Title can include an icon
title = tagList(shiny::icon("gear"), "tabBox status"),
tabPanel("Tab1",
"Currently selected tab from first box:",
verbatimTextOutput("tabset1Selected")
),
tabPanel("Tab2", "Tab content 2")
)
)
)
shinyApp(
ui = dashboardPage(dashboardHeader(title = "tabBoxes"), skin = "red", dashboardSidebar(), body),
server = function(input, output) {
# The currently selected tab from the first box
output$tabset1Selected <- renderText({
input$tabset1
})
}
)
#>
#> Listening on http://127.0.0.1:7512
由 reprex package 创建于 2019-10-18 (v0.3.0)
devtools::session_info()
#> - Session info ----------------------------------------------------------
#> setting value
#> version R version 3.6.1 (2019-07-05)
#> os Windows 10 x64
#> system x86_64, mingw32
#> ui RTerm
#> language (EN)
#> collate German_Germany.1252
#> ctype German_Germany.1252
#> tz Europe/Berlin
#> date 2019-10-18
#>
#> - Packages --------------------------------------------------------------
#> package * version date lib source
#> assertthat 0.2.1 2019-03-21 [1] CRAN (R 3.5.3)
#> backports 1.1.4 2019-04-10 [1] CRAN (R 3.5.3)
#> callr 3.3.2 2019-09-22 [1] CRAN (R 3.5.3)
#> cli 1.1.0 2019-03-19 [1] CRAN (R 3.5.3)
#> crayon 1.3.4 2017-09-16 [1] CRAN (R 3.4.2)
#> curl 4.1 2019-09-16 [1] CRAN (R 3.5.3)
#> desc 1.2.0 2018-05-01 [1] CRAN (R 3.5.1)
#> devtools 2.2.1 2019-09-24 [1] CRAN (R 3.5.1)
#> digest 0.6.21 2019-09-20 [1] CRAN (R 3.5.3)
#> ellipsis 0.3.0 2019-09-20 [1] CRAN (R 3.5.3)
#> evaluate 0.14 2019-05-28 [1] CRAN (R 3.5.3)
#> fs 1.3.1 2019-05-06 [1] CRAN (R 3.5.3)
#> glue 1.3.1 2019-03-12 [1] CRAN (R 3.5.3)
#> highr 0.8 2019-03-20 [1] CRAN (R 3.5.3)
#> htmltools 0.3.6 2017-04-28 [1] CRAN (R 3.5.1)
#> httpuv 1.5.2 2019-09-11 [1] CRAN (R 3.5.3)
#> httr 1.4.1 2019-08-05 [1] CRAN (R 3.5.3)
#> jsonlite 1.6 2018-12-07 [1] CRAN (R 3.5.2)
#> knitr 1.25 2019-09-18 [1] CRAN (R 3.5.3)
#> later 0.8.0 2019-02-11 [1] CRAN (R 3.5.3)
#> magrittr 1.5 2014-11-22 [1] CRAN (R 3.4.1)
#> memoise 1.1.0 2017-04-21 [1] CRAN (R 3.4.1)
#> mime 0.7 2019-06-11 [1] CRAN (R 3.5.3)
#> pkgbuild 1.0.5 2019-08-26 [1] CRAN (R 3.5.3)
#> pkgload 1.0.2 2018-10-29 [1] CRAN (R 3.5.1)
#> prettyunits 1.0.2 2015-07-13 [1] CRAN (R 3.5.1)
#> processx 3.4.1 2019-07-18 [1] CRAN (R 3.5.3)
#> promises 1.0.1 2018-04-13 [1] CRAN (R 3.5.1)
#> ps 1.3.0 2018-12-21 [1] CRAN (R 3.5.2)
#> R6 2.4.0 2019-02-14 [1] CRAN (R 3.5.3)
#> Rcpp 1.0.2 2019-07-25 [1] CRAN (R 3.5.3)
#> remotes 2.1.0 2019-06-24 [1] CRAN (R 3.5.3)
#> rlang 0.4.0 2019-06-25 [1] CRAN (R 3.5.3)
#> rmarkdown 1.15 2019-08-21 [1] CRAN (R 3.5.3)
#> rprojroot 1.3-2 2018-01-03 [1] CRAN (R 3.5.1)
#> sessioninfo 1.1.1 2018-11-05 [1] CRAN (R 3.5.3)
#> shiny * 1.3.2 2019-04-22 [1] CRAN (R 3.5.3)
#> shinydashboard * 0.7.1 2018-10-17 [1] CRAN (R 3.5.2)
#> stringi 1.4.3 2019-03-12 [1] CRAN (R 3.5.3)
#> stringr 1.4.0 2019-02-10 [1] CRAN (R 3.5.2)
#> testthat 2.2.1 2019-07-25 [1] CRAN (R 3.5.3)
#> usethis 1.5.1 2019-07-04 [1] CRAN (R 3.5.3)
#> webshot 0.5.1 2018-09-28 [1] CRAN (R 3.5.1)
#> withr 2.1.2 2018-03-15 [1] CRAN (R 3.5.1)
#> xfun 0.9 2019-08-21 [1] CRAN (R 3.5.3)
#> xml2 1.2.2 2019-08-09 [1] CRAN (R 3.5.3)
#> xtable 1.8-4 2019-04-21 [1] CRAN (R 3.5.3)
#> yaml 2.2.0 2018-07-25 [1] CRAN (R 3.5.1)
#>
#> [1] E:/R_LIBS_USER
#> [2] E:/R-3.6.1/library
最佳答案
您可以应用自定义 css
这个。 skin = "red"
中使用的红色是 #d73925
library(shiny)
library(shinydashboard)
js <- '.nav-tabs-custom .nav-tabs li.active {
border-top-color: #d73925;
}"'
body <- dashboardBody(
tags$style(js),
fluidRow(
tabBox(
title = "First tabBox",
# The id lets us use input$tabset1 on the server to find the current tab
id = "tabset1", height = "250px",
tabPanel("Tab1", "First tab content"),
tabPanel("Tab2", "Tab content 2")
),
tabBox(
side = "right", height = "250px",
selected = "Tab3",
tabPanel("Tab1", "Tab content 1"),
tabPanel("Tab2", "Tab content 2"),
tabPanel("Tab3", "Note that when side=right, the tab order is reversed.")
)
),
fluidRow(
tabBox(
# Title can include an icon
title = tagList(shiny::icon("gear"), "tabBox status"),
tabPanel("Tab1",
"Currently selected tab from first box:",
verbatimTextOutput("tabset1Selected")
),
tabPanel("Tab2", "Tab content 2")
)
)
)
shinyApp(
ui = dashboardPage(dashboardHeader(title = "tabBoxes"), skin = "red", dashboardSidebar(), body),
server = function(input, output) {
# The currently selected tab from the first box
output$tabset1Selected <- renderText({
input$tabset1
})
}
)
关于r - 在 shinydashboard tabBox 中更改所选选项卡的颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58445392/
我想根据盒子是否折叠在服务器端做一些操作。是否有可能在服务器端知道 Shiny 仪表板中的框是否折叠? [编辑]: 在通过 warmoverflow 提供的链接并通过以下 link 之后我想出了以下代
我正在使用 highcharter,我希望能够在我点击一个栏(无论是顶层还是下钻)时向我的图表添加一个 click 事件 , 它过滤它下面的数据表以包含相同的信息。 我已经检查了这个 SO 问题,它显
所以我的问题与这个非常相关:R shinyDashboard customize box status color 然而,问题在于所提供的解决方案并没有添加可用的颜色,而只是替换了现有的颜色。因此,我
如何修复这个简单示例中的下载按钮? library(shiny) library(shinydashboard) library(shinyjs) header 0) { Sys.sle
我在 R Shinydashboard 中创建了动态 sibebar 菜单。即使我使用 selected = TRUE ,在此动态模式下启动时不会选择与菜单关联的菜单项。 如何确保我可以控制在此动态模
我正在使用 shinyjs R 中的包以允许 onclick键入事件以在选项卡集中的选项卡之间导航。每个选项卡都有一个特定的侧边栏,并且在每个选项卡之间有多种(两种)方式(即通过单击选项卡本身或单击
我是第一次使用 shinydashboard,它很棒。但是我陷入了一个奇怪的问题。我有以下代码在我的浏览器上运行。然而,当部署在 shinyapps.io 上时,它只是拒绝工作。我提供了下面的代码。仪
是否可以在dashboardHeader旁边的水平栏中放置一些项目?我知道您可以像在this example中一样将notificationItem放在最右边。但是我想使用与dashboardSide
我正在尝试在zoom上实现ShinyDashboard,因为当Web浏览器的缩放比例为80%时,布局看起来更好。 我在Shiny应用中找到了关于SO的文章,但是,对于Shinydashboard而言,
有了这个基本的 Shiny 应用程序:我想将我的标题放在标题中,如下图中红色所示: 已经有一些解决方案Add text on right of shinydashboard header但我想知道是否
我正在尝试动态生成多个 menuItem s,可能很简单,但我没有得到正确的想法。 library(shiny) library(shinydashboard) port_tables<-c("tab
有了这个基本的 Shiny 应用程序:我想将我的标题放在标题中,如下图中红色所示: 已经有一些解决方案Add text on right of shinydashboard header但我想知道是否
我正在使用 shinydashboard,我的 ui 代码是这种格式: ui = dashboardPage(skin="black", dashboardHea
我正在使用 Shinydashboard 包创建一个仪表板,我需要根据所选选项卡更改背景颜色。我已经尝试了以下代码,但它没有按预期工作。 library(shiny) library(shinydas
我正在尝试创建一个跨越整个 mainPanel 的 tabBox。我能够获得横跨整个屏幕的宽度,但我无法获得相同的高度。我不希望使用以像素(或其他一些单位)为单位的绝对值,因为我希望该应用程序可以跨不
与其让侧边栏打开并挤压正文,不如通过越过正文打开侧边栏,这样就不会弄乱我的输出大小。 如果可能的话,我怎样才能做到这一点? 当前行为: 期望的行为: 示例中使用的代码: library(shinyda
有什么方法可以让 shinydashboard 上的某种文本自动换行吗?默认行为似乎是溢出到 body 区域。 我想避免直接修改 css,但是如果有一种解决方法涉及将 CSS 作为服务器/ui 代码本
我想构建一个 Shiny 的应用程序,允许用户选择一些列来过滤 data.table 。 我的真实数据有 ~110 列,列是 numeric 、 character 、 factor 、 intege
如何在仪表板标题侧边栏图标的右侧添加文本?似乎以前的类似解决方案在 dashboardHeader() 的更新下不再起作用。 . 这就是我在基本的 Shinydashboard 设置中尝试做的事情:
我正在制作 Shiny 的仪表板,并希望皮肤上的颜色与 Shiny 文档 ( skins available in shiny ) 中可用的颜色不同 我想要 ('#2666cc','rgb(38, 1
我是一名优秀的程序员,十分优秀!