Change type in dashbio.Clustergram from 'heatmap' to 'heatmapgl'

I use plotly.make_subplots() where my second plot is built in the following way:
clustergram = dashbio.Clustergram(
data=df_clustergram.values.T,
# column_labels=list(df_clustergram.index),
# row_labels=list(df_clustergram.columns),
cluster=‘column’,
color_threshold={
‘row’: 21000,
‘col’: 395
},

    color_map=px.colors.sequential.Viridis,
    standardize='row',

)

fig.add_trace(clustergram.data[0], 2, 1)

As far as I have many values on y axis I want to change default ‘heatmap’ type of clustergram to ‘heatmapgl’ but when I write fig.data[1][‘type’] = ‘heatmapgl’ it returns error with explanation that it is ‘readonly’ property. Is here any way I can do it?