如何解决无法在 Shiny 中更改 dygraph 的大小
我正在尝试减小 dygraph 输出的大小。但是我的所有设置似乎都被忽略了。
我已尝试在仪表板布局和 dygraph 设置中指定高度。所有软件包和软件都是通过 github 而非 CRAN 更新的。
这是我在下面尝试过的。
我在下面按 DOM 层次顺序列出了我的代码,以帮助您理解。
shinyUI(dashboardPage(header,sidebar,body))
body <- dashboardBody(
tabItems(
...
tabItem(tabName = "comments_explorer_tab",tab_comment),...
)
)
tab_comment <- fluidPage(
titlePanel("Data Explorer")
column(
...
width = 2 # reduce width of sidebar
),column(
width = 10,fluidRow(height='50px',tabsetPanel(
tabPanel("Time",height=50,dygraphs::dygraphOutput("comment_dygraph")))
),fluidRow(DTOutput("data_table"))
)
)
shinyServer(function(input,output) {
output$comment_dygraph <- renderDygraph({
dygraph(comment_counts,main = paste0("Daily Counts for "user")) %>%
dyOptions(colors = RColorBrewer::brewer.pal(3,"Dark2"),includeZero = TRUE,retainDateWindow = TRUE) %>%
dyAxis("x",drawGrid = FALSE) %>%
dyAxis("y",label = "Counts")
})
output$data_table <- renderDT({
datatable(data = comment_time_selection(),extensions = c("Scroller"),options = list(
autoWidth = TRUE,scrollResize =TRUE,scrollX = TRUE,scrollCollapse= TRUE,scrollY = 100,initComplete = I('function(setting,json) { alert("done"); }')
),rownames= FALSE
)
})
}
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。