我在R Shiny Dashboard中有一个方框,我正在显示这样的饼图。
我想在方框内的饼图下面放一个文字。
我无法怎么做。我尝试在内部流体排但没有奏效。
dashboardBody(
tabItems(
tabItem(tabName = "dashboard",
fluidRow(
box(
plotlyOutput("averageplot", height = 650),
title = "",
status = "success",
width = 12,
fluidRow(textOutput("instructions"))
))),
))