How to use localized formats for date displayed on the X-asix values

how to translate Oct 11 to 10月11号 ?

how to change moment locale ?

moment.locale('zh-cn');

Hey @jk2K!

It looks like you might be able to use the x-axis tickformat here. If you switch over to the Plotly JSON editor and then set the Layout.xaxis.tickformat property to "%m月%d号" it renders as below:

Does that work?

thanks, :+1: