There are dozens of data, but only 11 are visible.
{
$schema: https://vega.github.io/schema/vega-lite/v4.json
data:
{
url: {
%context%: true
%timefield%: input_date
index: vega_05
body: {
}
}
format: {
property: hits.hits
}
}
mark: bar
encoding: {
"x": {
"field": "_source.start",
"type" : "ordinal",
},
"x2": {
"field": "_source.end",
"type" : "ordinal",
},
"y": {
"field": "_source.name",
"type" : "nominal",
}
}
}
Here is Json
{
"input_date" : "2022-12-01T00:00:00.000Z",
"start" : "01:00",
"end" : "01:01",
}
I has this json data 00:00 ~ 23:59 of everyday.
I want all this data to be shown.(Maybe the width will get tight)
Please help this
Thanks