I have an interesting case here - let assume a table like this (values changed to not give you my actual data):
Week Count
2015-30 7
2015-34 15
2015-35 8
2015-37 11
2015-51 1
2015-52 30
2015-53 13
2016-03 2
2016-04 17
2016-05 3
You’ll see some of those weeks are missing in my result because they had a 0 count of database items.
I’m doing a visualization of that, a bar chart with weeks as X, count as Y.
Now, if I put the X Axis into “datetime” scale (default), I only get the bars for the last 3 weeks in the set, as those are contiguous, but I’m missing all the data for weeks before the last “hole” in there. If I put the X Axis on category scale, it works, but when I get a lot of weeks in there, this will start looking weird, I’m sure - and it would be much nicer to have the X axis list dates.