Dear all,
Simple question but I did not manage to solve my problem myself !!
I need to set the column width of a matrix showed in my app.
I try to find option and it seems that I have to specify the align option. Thus, I wrote :
output$Tab <- renderTable({
tab <- matrix(0, 5,7)
return(tab)
}, align = "p\{3cm\}")
But indeed, it doesn't work !
I saw that this option is available in renderDataTable but I don't want to "search" elements in my table. Thus, a renderDataTable is unnecessary in my situation ..
Does anyone have any ideas?
Thank you in advance
cha