My JSON data is a list of objects, each object contains the date in this format:
"date" : {
"year" : 2019,
"month" : 2,
"day" : 17
},
How can I tell Vega-lite that this is a date? I have worked around this by creating another day field that is a string concatenating these three fields, and using:
"format" : {
"parse" : {
"day" : "date: '%Y %m %d'"
}
But I'd like to be able to just use the existing 3 fields....