TimeRangePicker variable

TimeRangePicker variable

Signature

  1. TimeRangePicker: React.FunctionComponent<{
  2. fiscalYearStartMonth?: number | undefined;
  3. timeZone?: string | undefined;
  4. value: TimeRange;
  5. onChange: (timeRange: TimeRange) => void;
  6. history?: TimeRange[] | undefined;
  7. onChangeTimeZone: (timeZone: TimeZone) => void;
  8. onChangeFiscalYearStartMonth?: ((month: number) => void) | undefined;
  9. hideQuickRanges?: boolean | undefined;
  10. onMoveBackward: () => void;
  11. onMoveForward: () => void;
  12. onZoom: () => void;
  13. timeSyncButton?: JSX.Element | undefined;
  14. isSynced?: boolean | undefined;
  15. hideText?: boolean | undefined;
  16. }>

Import

  1. import { TimeRangePicker } from '@grafana/ui';