在闪亮仪表板的选项卡面板中调整ggplot条形图的高度

问题描述 投票:0回答:1

我正在使用plotlyggplot在闪亮的仪表板中的tabPanel渲染条形图。下面是我在UI部分的tabPanel上的代码。

tabBox(width =12, id = "plot4", height = "320px", selected = "FarmInputs",
   tabPanel("FarmInputs", plotlyOutput("inputsPlot", height = "auto"))
   )

我也在tabPanel中试过这个

tabPanel("FarmInputs", plotlyOutput("inputsPlot"),height = "320px")

在服务器功能

renderPlotly({
ggplot(aes(var,value))+geom_bar(stat="Identity")+coord_flip()+theme_gdocs()
})

该绘图呈现在tabPanel所需高度之外,如屏幕截图所示。如何控制绘图的高度,以便在tabPanel中呈现exaclty?

enter image description here

r ggplot2 shiny shinydashboard r-plotly
1个回答
0
投票

尝试更改renderPlot函数中的高度。这是代码:renderPlot(expr, width = "auto", height = "auto")

© www.soinside.com 2019 - 2024. All rights reserved.