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. hideText?: boolean | undefined;
  8. onChangeTimeZone: (timeZone: TimeZone) => void;
  9. onChangeFiscalYearStartMonth?: ((month: number) => void) | undefined;
  10. hideQuickRanges?: boolean | undefined;
  11. onMoveBackward: () => void;
  12. onMoveForward: () => void;
  13. onZoom: () => void;
  14. timeSyncButton?: JSX.Element | undefined;
  15. isSynced?: boolean | undefined;
  16. }>

Import

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