Create table with different row heights

Hello Community,

is it possible to change the heights of different rowsa with different values?

I’ve tried as following:

indWidth = 2
#indWidth should be [2, 20, 2, 20, 2, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 20, 2]

fig = go.Figure(data = [go.Table(cells = dict(values = vl_data, line_color = ‘black’, font_color = ‘black’, fill_color = vl_co, height = indWidth))], layout = go.Layout(height=600, width = 800))

fig.update_traces(columnwidth = colWidth)
fig.show()

Since the code doesn’t work with indWidth as a list of int. So I’m asking myself and now you, if there is another possibility to this problem.

Thanks
Samson