Ive seen many different answers, but need one specifically for the use of Plotly in Python....my code is below, but the Y axis doesn't come back in basic decimal points (I believe it come back in some micro format where instead of .000258 it will show 258.XXX)
floki_ohlc = df.iplot(kind = "ohlc",fill = True, colorscale = "rdylbu", theme = "solar",
title = "FLOKI INU/USDT", xTitle = "Time", yTitle = "Price (USD)")
And I cant find anything in the documentation about changing the values, only the titles.
Thanks in advance@
I'm guessing you're using express. I used the diamonds dataset from the R library ggplot2 for the plot.
It can be done in Python when you create the graph. Since I don't have your data, I've made a few examples and what changes and how it changes when I use it.
Plotly formatting uses D3. You can read more about that here.
Default y-axis formatting
Use commas at the thousands & round to the whole number
Remove all formatting—show as is in the data
SI prefix with no significant digits (M for millions here)
Hexidecimal formatting...in case binary is of interest