Dashbio clustergram get row labels after clustering

Is there a way, I can get the row labels after clustering the rows in dash bioโ€™s Clustergram. I am trying to add more info to the hovertemplate after creating the clustergram?

#creating the clustergram
clustergram = dashbio.Clustergram(
data=relevant_data.values,
row_labels=row_label_column,
column_labels=relevant_data.columns.tolist(),
row_colors=row_colors,
column_colors=col_colors_str,
hidden_labels=hidden_labels_value,
height=1000,
width=1000,
display_ratio=[0.1, 0.2],)

#adding more info to hovertext
hovertext =
for idx, (assay_value, name_value) in enumerate(zip(assay_list, name_list)):
hover_row =
for col in formatted_areas.columns:
hover_row.append(f"sample: {col}
assay: {assay_value}
metabolite: {name_value}")
hovertext.append(hover_row)

clustergram.for_each_trace(
lambda t: t.update(hovertext=hovertext) if isinstance(t, go.Heatmap) else t
)

The only problem is that the name_list (row labels) is clustered and I dont have the clustered values? Thank you!