Any way to show off raw data in a pleasant manner?

I want to display some raw numbers coming from the database, and I wonder if there’re some pleasant ways to show them with plotly/dash ? I am open to any ideas, thank you.

Example :

Number 1 : 256
Number 2 : 425

If it’s only a few numbers then you could display them on cards like in this sample app. You can find the code of all sample apps here.

If you want to display rows of your dataset then you could use the dbc.Table component or the dcc.DataTable component. It’s less customizable than creating your own cards though.