Hello plot.ly community,
I want to configure the x axis to date format like 2018CW04.
In case I use this one:
layout(
xaxis = list(title=“Date”,
rangeslider = list(type = “date”),
tickformat=("%Y CW %W"))
)
The date will start with Week “00” which is wrong.
I had a look through several postings here the formatting with %V was mentioned for “%V - ISO 8601 week of the year as a decimal number [01, 53].”
(Posting: “How to make the messy date ticks organized”)
But this will show “V” in the slide instead of the week number.
Am I doing something wrong?