TimePickerConfig🔗
Time picker configuration
It defines the default config for the time picker and the refresh picker for the specific dashboard.
Definition🔗
export interface TimePickerConfig {
// Whether timepicker is visible or not.
hidden?: boolean;
// Interval options available in the refresh picker dropdown.
refresh_intervals?: string[];
// Selectable options available in the time picker dropdown. Has no effect on provisioned dashboard.
time_options?: string[];
// Override the now time by entering a time delay. Use this option to accommodate known delays in data aggregation to avoid null values.
nowDelay?: string;
}
Methods🔗
No methods.