packages feed

hvega-0.11.0.1: tests/specs/time/outputAsUTC.vl

{
    "$schema": "https://vega.github.io/schema/vega-lite/v4.json",
    "data": {
        "values": [
            {
                "date": "Sun, 01 Jan 2012 23:00:00",
                "price": 150
            },
            {
                "date": "Sun, 02 Jan 2012 00:00:00",
                "price": 100
            },
            {
                "date": "Sun, 02 Jan 2012 01:00:00",
                "price": 170
            },
            {
                "date": "Sun, 02 Jan 2012 02:00:00",
                "price": 165
            },
            {
                "date": "Sun, 02 Jan 2012 03:00:00",
                "price": 200
            }
        ]
    },
    "encoding": {
        "x": {
            "axis": {
                "labelAngle": 15
            },
            "field": "date",
            "timeUnit": "utcyearmonthdatehoursminutes",
            "type": "temporal"
        },
        "y": {
            "field": "price",
            "type": "quantitative"
        }
    },
    "mark": "line"
}