Hi there, a quick question. I am trying to adjust the font size when using go.Indicator
, for example:
fig_gauge.add_trace(go.Indicator(
mode='delta',
value=reordered_score_list[p],
delta={'reference': max(reordered_score_list)},
number={'font': {'size': 2}}, # <--- Change the font size
),
row=p + 1, col=2) # Place it on the second column in the subplot
However, does not matter how big/small the font size I try, it does not seem to change. Any pointers would be appreciated!