Hello,
I have a data frame with 3 columns, index, name, and value. I made a bar chart exact like this:
df = px.data.medals_long()
fig = px.bar(df, x="medal", y="count", color="nation", text_auto=True)
fig.show()
Text auto works fine and it shows me the values within each bar. Now since it only show me the values in plain number I want to add text like dollar so that it shows me 343 dollar in the bar chart. Is that possible?