Hello,
Currently I have a pandas dataframe :
df = pd.DataFrame({
"date": ["20210613", "20210614", "20210615"],
"user": ["A\nB", "C", "D"],
"machine" : [1, 0, 3]
})

I wonder if there is any way to print a table like this:

no matter using dcc.Textarea or dash_table.DataTable is OK.
Currently I still can not figure out a good way to achieve this, many thanks.
1 post - 1 participant