I need help displaying complete table

I created a datatable and all the columns are there but the data is like shifted to the right,
for example, my first column is call date, and the data for that columns is in the next column called hour, which is next to date and so on,
is there a fix for this?

Hi @ruben.martinez2914 and welcome to the Dash Community :slight_smile:

I haven’t seen that problem before, so it’s likely due to how you define the data or the table. It would be helpful if you could create a minimal example that reproduces the issue. You can find more information on how to do that here: How to write a Minimal Reproducible Example (MRE)

I fix it, i should slap myself lol I use numbers as columns and that causes isses, no wonder for this table i have to use df.to_records() instead of df.to_dict(‘records’)