12

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:

Table with text sticking on top of cells

Marian Rick
  • 3,350
  • 4
  • 31
  • 67

1 Answers1

1

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

Contreras
  • 11
  • 2