我正在使用plotly
和ggplot
在闪亮的仪表板中的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?
尝试更改renderPlot
函数中的高度。这是代码:renderPlot(expr, width = "auto", height = "auto")