We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using a text mark with theta ordinal encoding, the values get wrapped back onto the start rather than distributed evenly around the circle.
Example:
{ "data":{ "values":[ {"quadrant":"N"}, {"quadrant":"E"}, {"quadrant":"S"}, {"quadrant":"W"} ] }, "encoding": { "theta":{ "field":"quadrant", "type":"ordinal", "sort":null }, "text":{ "field":"quadrant", } }, "layer": [ { "mark": { "type": "text", "radius":50 } } ] }
However, this example for an arc mark give 4 equal segments as expected:
{ "data":{ "values":[ {"quadrant":"N"}, {"quadrant":"E"}, {"quadrant":"S"}, {"quadrant":"W"} ] }, "encoding": { "theta":{ "field":"quadrant", "type":"ordinal", "sort":null }, "text":{ "field":"quadrant", } }, "layer": [ { "mark": { "type": "arc", "radius":50 } } ] }
The text was updated successfully, but these errors were encountered:
The first generates a point scale and the second a band scale for some reason.
Sorry, something went wrong.
No branches or pull requests
When using a text mark with theta ordinal encoding, the values get wrapped back onto the start rather than distributed evenly around the circle.
Example:
However, this example for an arc mark give 4 equal segments as expected:
The text was updated successfully, but these errors were encountered: