Hi, any idea why is Vega-lite displaying the last month July 1 2022 of my table as the first month in my Chart, even before June 1 2021 ?!! this happen with whatever Date I start the table on.
It looks like a Bug (in Vega or AT) to me, displaying the last month before the first one…
Anyone facing the same issue, Thanks !
See code used
{
"$schema": "https://vega.github.io/schema/vega-lite/v4.json",
"title": "Debug Test Chart ",
"width": "container",
"height": "container",
"mark": "bar",
"encoding": {
"x": {
"timeUnit": "month", "field": "DateTest",
"type": "nominal",
"sort": "x"
},
"y": {
"field": "VALUE",
"type": "quantitative"
},
"color": {
"field": "NAME",
"type": "nominal"
}
}
}