rhandsontable を使用して、ユーザーが編集するテーブルを作成しています。右下のボックスを最後のボックスを超えてドラッグすると、データフレームのサイズを変更できることに気付きました。サイズ変更可能なデータフレームをオフにできるオプションまたはソリューションはありますか?
library(shiny)
library(rhandsontable)
server = (function(input, output, session) {
output$hot = renderRHandsontable({
DF = data.frame(val = 1:10, bool = TRUE, big = LETTERS[1:10],
small = letters[1:10],
dt = seq(from = Sys.Date(), by = "days", length.out = 10),
stringsAsFactors = FALSE)
rhandsontable(DF, readOnly = TRUE, width = 550, height = 300) %>%
hot_col("val", readOnly = FALSE)
})
})
ui = (fluidPage(
rHandsontableOutput("hot")
))
shinyApp(ui = ui, server = server)