替换Shinydashboard信息框中的图像图标

时间:2019-04-17 19:27:00

标签: r shinydashboard

我有此信息框:

infoBox("Test", value = 10, subtitle = "test",
  icon = shiny::icon("bar-chart"), color = "aqua", width = 4,
  href = NULL, fill = FALSE)

我想将图标替换为自定义图像。我正在使用img(src = "image.png", width = 50)这样做,但是它返回一个错误。 有什么想法怎么做吗?

我是这样做的:

infoBox("Test", value = 10, subtitle = "test",
  icon = img(src = "image.png", width = 50), color = "aqua", width = 4,
  href = NULL, fill = FALSE)

0 个答案:

没有答案