gauge-indicator.d.ts 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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 { NestedOption } from '../../../core/nested-option';
  14. import DevExpress from 'devextreme/bundles/dx.all';
  15. export declare abstract class DxoGaugeIndicator extends NestedOption {
  16. arrowLength: number;
  17. backgroundColor: string;
  18. baseValue: number;
  19. beginAdaptingAtRadius: number;
  20. color: string;
  21. horizontalOrientation: string;
  22. indentFromCenter: number;
  23. length: number;
  24. offset: number;
  25. palette: string | Array<string>;
  26. secondColor: string;
  27. secondFraction: number;
  28. size: number;
  29. spindleGapSize: number;
  30. spindleSize: number;
  31. text: {
  32. customizeText?: Function;
  33. font?: DevExpress.viz.Font;
  34. format?: DevExpress.ui.format | string;
  35. indent?: number;
  36. };
  37. type: string;
  38. verticalOrientation: string;
  39. width: number;
  40. }