range-container.d.ts 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. /*!
  2. * devextreme-angular
  3. * Version: 19.1.16
  4. * Build date: Tue Oct 18 2022
  5. *
  6. * Copyright (c) 2012 - 2022 Developer Express Inc. ALL RIGHTS RESERVED
  7. *
  8. * This software may be modified and distributed under the terms
  9. * of the MIT license. See the LICENSE file in the root of the project for details.
  10. *
  11. * https://github.com/DevExpress/devextreme-angular
  12. */
  13. import { QueryList } from '@angular/core';
  14. import { NestedOptionHost } from '../../core/nested-option';
  15. import { NestedOption } from '../../core/nested-option';
  16. import { DxiRangeComponent } from './range-dxi';
  17. export declare class DxoRangeContainerComponent extends NestedOption {
  18. backgroundColor: string;
  19. offset: number;
  20. orientation: string;
  21. palette: string | Array<string>;
  22. paletteExtensionMode: string;
  23. ranges: Array<any | {
  24. color?: string;
  25. endValue?: number;
  26. startValue?: number;
  27. }>;
  28. width: number | {
  29. end?: number;
  30. start?: number;
  31. };
  32. horizontalOrientation: string;
  33. verticalOrientation: string;
  34. protected readonly _optionPath: string;
  35. rangesChildren: QueryList<DxiRangeComponent>;
  36. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  37. }
  38. export declare class DxoRangeContainerModule {
  39. }