header.labels throw an error when set on a column facet
See original GitHub issueThis spec will throw an error:
{
"data": {"url": "data/population.json"},
"mark": "bar",
"encoding": {
"column": {
"field": "sex",
"type": "nominal",
"header": {"title": null, "labels": false}
},
"y": {
"aggregate": "sum",
"field": "people",
"type": "quantitative"
},
"x": {"field": "age", "type": "ordinal"}
}
}
But the same on a row
facet will work. And if you change labels
to true
, it works too.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (4 by maintainers)
Top Results From Across the Web
How to change facet labels? - Stack Overflow
Here is a solution that avoids editing your data: Say your plot is facetted by the group part of your dataframe, which has...
Read more >Unable to hide facet header labels when facet is used as an ...
So I tried to hide the labels to bring the facets closer but tur... ... Column('year:O', spacing=0, title=None, header=alt.
Read more >11.3 Changing the Text of Facet Labels - R Graphics Cookbook
Unlike with scales where you can set the labels, to set facet labels you must change the data values. Also, at the time...
Read more >Lightning Aura Components Developer Guide
Component Facets . ... Setting Label Values via a Parent Attribute . ... The framework throws an error if a CSS file doesn't....
Read more >Common Problems Found in RAML 1.0 API Specifications
This error occurs when a facet or data type is defined as having a specific set of properties, yet an API specification defines...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Fixed in https://github.com/vega/vega-lite/pull/6078
Ahh, this is no bueno