I have an axis with dollar values and I would like to add a dollar sign and comma at the thousands place (e.g. $1,000) to my tick values. I have tried the below and a million other variations ha (it’s a 3D scatter which is why I’m using ‘scene’):
fig.update_layout(
scene = dict(
xaxis_tickformat =${:,}
)
)
And this gives me the dollar but not the comma. Any help would be incredible – I’m really struggling!