How can I vertical align text inside Plotly Table cells? I can successfully set the height:
go.Figure(
data=[
go.Table(
cells=dict(
height=50,
)
)
]
)
This looks awful:
How can I vertical align text inside Plotly Table cells? I can successfully set the height:
go.Figure(
data=[
go.Table(
cells=dict(
height=50,
)
)
]
)
This looks awful:
I have searched in several forums and all I've found is you can do it either adding paddingBottom to the styles of the cell or migrating all your table from Plotly to Dash