Finally found a project well suited for Dash, which has been exciting - coming from a Shiny background.
Is it possible to have a display header for a DataTable that is not exactly the same character values as the underlying datatable column? The use case would be to display units that correspond to the values in the particular column, without mucking up the column names in the underlying python code. You could also imagine a pretty print of the column name for enhanced readability.
Example
head(df)
['E111','K']
that I would like to be displayed as:
E111 (GPa)
K (GPa)
I could introduce _
to the variable names, but looking for a nicer solution. Obviously, the current header situation is fine for my use case.