Plotly Table: Vertical align text in cells

Viewed 603

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

0 Answers
Related