Formating decimal separator in xticks when plotting with PlotlyJS

I don’t know of a way to do the change within plotly, but you can do it from julia as:

df.mean_turnover_text = replace.(string.(df.mean_turnover), "." => ",")

then change

to
text=:mean_turnover_text

1 Like