label.d.ts 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  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 DevExpress from 'devextreme/bundles/dx.all';
  14. import { NestedOptionHost } from '../../core/nested-option';
  15. import { NestedOption } from '../../core/nested-option';
  16. export declare class DxoLabelComponent extends NestedOption {
  17. connectorColor: string;
  18. connectorWidth: number;
  19. customizeText: Function;
  20. font: DevExpress.viz.Font;
  21. format: DevExpress.ui.format | string;
  22. indent: number;
  23. visible: boolean;
  24. horizontalAlignment: string;
  25. position: string;
  26. text: string;
  27. verticalAlignment: string;
  28. alignment: string;
  29. customizeHint: Function;
  30. displayMode: string;
  31. indentFromAxis: number;
  32. overlappingBehavior: string;
  33. rotationAngle: number;
  34. staggeringSpacing: number;
  35. textOverflow: string;
  36. wordWrap: string;
  37. argumentFormat: DevExpress.ui.format | string;
  38. backgroundColor: string;
  39. border: {
  40. color?: string;
  41. dashStyle?: string;
  42. visible?: boolean;
  43. width?: number;
  44. } | {
  45. color?: string;
  46. visible?: boolean;
  47. width?: number;
  48. };
  49. connector: {
  50. color?: string;
  51. visible?: boolean;
  52. width?: number;
  53. } | {
  54. color?: string;
  55. opacity?: number;
  56. visible?: boolean;
  57. width?: number;
  58. };
  59. horizontalOffset: number;
  60. showForZeroValues: boolean;
  61. verticalOffset: number;
  62. hideFirstOrLast: string;
  63. indentFromTick: number;
  64. useRangeColors: boolean;
  65. location: string;
  66. showColon: boolean;
  67. radialOffset: number;
  68. topIndent: number;
  69. shadow: {
  70. blur?: number;
  71. color?: string;
  72. offsetX?: number;
  73. offsetY?: number;
  74. opacity?: number;
  75. };
  76. useNodeColors: boolean;
  77. dataField: string;
  78. enabled: boolean;
  79. protected readonly _optionPath: string;
  80. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  81. }
  82. export declare class DxoLabelModule {
  83. }