Interface UIDefaultTimeline

UIDefaultTimeline defines the configuration of plain date timeline.

interface UIDefaultTimeline {
    multiSelection?: boolean;
    range?: {
        end: string;
        start: string;
    };
    type: "default";
    value: UIDefaultTimelineValue;
}

Properties

multiSelection?: boolean

Allow selection of multiple points in the timeline by holding the Shift key.

range?: {
    end: string;
    start: string;
}

Optional range for the timeline using dates in ISO format (e.g. "2020-01-01"). If left empty, the default range of the timeline is used. The default start date is 3 years previous to the current date. The default end date is 7 years after the current date.

Type declaration

  • end: string
  • start: string
type: "default"

The value of the default timeline.

Generated using TypeDoc