Module

x/vega_lite/examples/specs/bar_custom_time_domain.vl.json

A concise grammar of interactive graphics, built on Vega.
Latest
File
{ "$schema": "https://vega.github.io/schema/vega-lite/v4.json", "description": "Customizing time scale domain.", "data": { "values": [ {"a": "December 17, 1995 03:00:00", "b": 28}, {"a": "December 17, 1995 09:00:00", "b": 30}, {"a": "December 17, 1995 15:00:00", "b": 30} ] }, "mark": "bar", "encoding": { "x": { "timeUnit": "hours", "field": "a", "scale": { "domain": [{"hours": 0}, {"hours": 24}] } }, "y": {"field": "b", "type": "quantitative"} }}