Root definitions

DateTime

Permalink

Object for defining datetime in Vega-Lite Filter. If both month and quarter are provided, month has higher precedence. day cannot be combined with other date. We accept string for month and day names.

Properties

date

number

Integer value representing the date (day of the month) from 1-31.

Minimum: 1, Maximum: 31
day

anyOf [number, string]

Value representing the day of a week. This can be one of: (1) integer value -- 1 represents Monday; (2) case-insensitive day name (e.g., "Monday"); (3) case-insensitive, 3-character short day name (e.g., "Mon").

Warning: A DateTime definition object with day** should not be combined with year, quarter, month, or date.

hours

number

Integer value representing the hour of a day from 0-23.

Minimum: 0, Maximum: 24
milliseconds

number

Integer value representing the millisecond segment of time.

Minimum: 0, Maximum: 1000
minutes

number

Integer value representing the minute segment of time from 0-59.

Minimum: 0, Maximum: 60
month

anyOf [number, string]

One of: (1) integer value representing the month from 1-12. 1 represents January; (2) case-insensitive month name (e.g., "January"); (3) case-insensitive, 3-character short month name (e.g., "Jan").

quarter

number

Integer value representing the quarter of the year (from 1-4).

Minimum: 1, Maximum: 4
seconds

number

Integer value representing the second segment (0-59) of a time value

Minimum: 0, Maximum: 60
utc

boolean

A boolean flag indicating if date time is in utc time. If false, the date time is in local time

year

number

Integer value representing the year.

Loading...

Editor and Validator