gpt4 book ai didi

r - infoBox shinydashboard 上的自定义图标

转载 作者:行者123 更新时间:2023-12-04 02:43:08 28 4
gpt4 key购买 nike

有没有办法在 shinydashboard 上的 infoBox 上使用自定义图标。我正在尝试使用 hrbrmstr gist 上的示例但是我找不到更新 infoBox 函数的地方。

library(shiny)

ui <- dashboardPage(
dashboardHeader(title = "Dynamic boxes"),
dashboardSidebar(),
dashboardBody(
fluidRow(
box(width = 2, actionButton("count", "Count")),
infoBoxOutput("ibox"),
valueBoxOutput("vbox")
)
)
)

server <- function(input, output) {
output$ibox <- renderInfoBox({
infoBox(
"Title",
input$count,
#icon = icon("credit-card")
icon=icon(list(src=x, width="80px"), lib="local")
)
})
output$vbox <- renderValueBox({
valueBox(
"Title",
input$count,
icon = icon("credit-card")
)
})
}

shinyApp(ui, server)

最佳答案

我使用了来自 leonawiczapputils 包.我用 apputils::infoBox 替换了 infoBox 函数。

library(shiny)
library(apputils)
#exApp("icons")
ui <- dashboardPage(
dashboardHeader(title = "Dynamic boxes"),
dashboardSidebar(),
dashboardBody(
fluidRow(
box(width = 2, actionButton("count", "Count")),
infoBoxOutput("ibox"),
valueBoxOutput("vbox")
)
)
)

server <- function(input, output) {

output$ibox <- renderInfoBox({
ic <- apputils::icon(list(src = "https://cdn1.iconfinder.com/data/icons/money-47/512/Money_Currency_Finance-41-512.png", width = "80px"), lib = "local")
apputils::infoBox(
"Title",
input$count,
icon = ic
#icon = icon("credit-card")
#icon=icon(list(src=x, width="80px"), lib="local")
)
})
output$vbox <- renderValueBox({
valueBox(
"Title",
input$count,
icon = icon("credit-card")
)
})
}

shinyApp(ui, server)

关于r - infoBox shinydashboard 上的自定义图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58398925/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com