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
For timeUnit that includes the whole date (date truncation),
{ "$schema": "https://vega.github.io/schema/vega-lite/v5.json", "description": "Google's stock price over time.", "data": {"url": "data/stocks.csv"}, "transform": [{"filter": "datum.symbol==='GOOG'"}], "mark": "line", "encoding": { "x": { "timeUnit": "yearmonthdatehoursminutes", "field": "date", "type": "temporal" }, "y": {"field": "price", "type": "quantitative"} } }
It's actually generally better if we don't apply timeUnit specifiers here.
The text was updated successfully, but these errors were encountered:
fix(#9430): improve format for axis with chronological timeUnit (time…
b253f14
…Unit with year), by using Vega's default
add1267
kanitw
No branches or pull requests
Bug Description
For timeUnit that includes the whole date (date truncation),
It's actually generally better if we don't apply timeUnit specifiers here.
The text was updated successfully, but these errors were encountered: