奇妙なことに、以下の光沢のあるアプリを実行すると、ページの右側にスクロールバーが表示されます。
shinyUI(
fluidPage(
tabsetPanel(
tabPanel("Plot", htmlOutput("test")),
tabPanel("Summary"),
tabPanel("Table")
)
)
)
library(googleVis)
library(shiny)
shinyServer(function(input, output, session) {
output$test <- renderGvis({
gvisBubbleChart(Fruits, idvar="Fruit",
xvar="Sales", yvar="Expenses",
colorvar="Year", sizevar="Profit",
options=list(
hAxis='{minValue:75, maxValue:125}',
vAxis='{minValue:0, maxValue:250}'
,height=600,width=600)
)
})
})
tabsetPanel レイアウトから pageWithSidebar レイアウトに変更すると、プロットはスクロールバーなしで正常に表示されます。別のメモとして、オプション リストで幅と高さを指定しないと、垂直方向と水平方向の 2 つのスクロールバーが表示されます。
スクロールバーなしでtabsetPanels内でgoogleVisチャートを使用することは可能ですか?