I know this might sound weird to you but I am trying right align a numeric column in a left-aligned table. See the screenshot below. The data comes from pandas df so I am using _ as a placeholder for now. Basically, I want to replace _ with  . I tried putting empty space in pandas df but it got ignored. Is it possible to create another div in that specific column and right-align the numbers? Any suggestion would be greatly appreciated!
Yes! I am using DashTable for now and here is the code snippet. What I am doing is converting that numeric column to string and calculating the maximum length. Then I pad some placeholders to the beginning if needed. I checked the DashTable documentation but it seems like you can only style the whole table, not a specific column.