I'm trying to plot a bar chart using plotly and I wanted to add a currency "$" in the Y axis scale and also the Y axis figure should be delimited by "," (In Thousands, e.g, 1000 should be 1,000)
import plotly.graph_objects as go
fig = go.Figure()
fig.add_trace(go.Bar(x=["Apple", 'Mango', 'Banana'], y=[4000, 3000, 5000]))
fig.show()
I expect to add a currency "$" in the Y axis scale and also the Y axis figure should be delimited by ",". (In Thousands, e.g, 1000 should be 1,000)