Bug Description
{
"data": {
"values": [
{"a": "A", "b": 28},
{"a": "B", "b": 55},
{"a": "C", "b": 43},
{"a": "D", "b": 91},
{"a": "E", "b": 81},
{"a": "F", "b": 53},
{"a": "G", "b": 19},
{"a": "H", "b": 87},
{"a": "I", "b": 52}
]
},
"mark": {
"type": "bar",
"cornerRadius": 1
},
"encoding": {
"x": {
"field": "a"
},
"y": {
"field": "b",
"type": "quantitative"
},
},
"$schema": "https://vega.github.io/schema/vega-lite/v6.1.0.json",
"params": [
{
"name": "pan_zoom",
"bind": "scales",
"select": {
"type": "interval"
}
}
]
}
When cornerRadius is 0, it renders correctly
If cornerRadius is 1 and select.type is "interval", the bars don't show up. The bars show up if select.type changes to "point"

Similar issue:
#6759
Checklist
Bug Description
{ "data": { "values": [ {"a": "A", "b": 28}, {"a": "B", "b": 55}, {"a": "C", "b": 43}, {"a": "D", "b": 91}, {"a": "E", "b": 81}, {"a": "F", "b": 53}, {"a": "G", "b": 19}, {"a": "H", "b": 87}, {"a": "I", "b": 52} ] }, "mark": { "type": "bar", "cornerRadius": 1 }, "encoding": { "x": { "field": "a" }, "y": { "field": "b", "type": "quantitative" }, }, "$schema": "https://vega.github.io/schema/vega-lite/v6.1.0.json", "params": [ { "name": "pan_zoom", "bind": "scales", "select": { "type": "interval" } } ] }When
cornerRadiusis 0, it renders correctlyIf

cornerRadiusis 1 and select.type is "interval", the bars don't show up. The bars show up if select.type changes to "point"Similar issue:
#6759
Checklist