Shiny:无法在 Shiny DataTables 中设置列宽

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

我对 Shiny 和 DataTables 还很陌生,所以这可能是一个愚蠢的问题。由于某种原因我无法更改列宽。我试过了

 output$table<-DT::renderDataTable(
  {withProgress(message="Compiling",
                {dataInput()}
               )
  },
  filter="top",
  rownames=FALSE,
  options=list(lengthMenu=c(5,10,25,50,100),
               pageLength=25,
               searchHighlight=TRUE,
               autoWidth=TRUE,
               columnDefs=list(list(width="200px",targets="_all"))
              )
)

但它不起作用(我可以看出,因为列有不同的宽度)。我也尝试过使用旧的

aoColumnDefs
bAutoWidth
,并设置
autoWidth=FALSE
,但都不起作用。

我的DT有33列,所以可能是因为在Shiny中显示DT时有总宽度限制?无论如何,如果有人能帮助我解决这个问题,那将非常有帮助。

r shiny dt
1个回答
10
投票

您需要按照

https://github.com/rstudio/DT/issues/29
在选项中添加scrollX=TRUE

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