chart-annotation-config-dxi.d.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 { CollectionNestedOption } from '../../../core/nested-option';
  14. import DevExpress from 'devextreme/bundles/dx.all';
  15. export declare abstract class DxiChartAnnotationConfig extends CollectionNestedOption {
  16. allowDragging: boolean;
  17. argument: Date | number | string;
  18. arrowLength: number;
  19. arrowWidth: number;
  20. axis: string;
  21. border: {
  22. color?: string;
  23. cornerRadius?: number;
  24. dashStyle?: string;
  25. opacity?: number;
  26. visible?: boolean;
  27. width?: number;
  28. };
  29. color: string;
  30. customizeTooltip: Function;
  31. description: string;
  32. font: DevExpress.viz.Font;
  33. height: number;
  34. image: string | {
  35. height?: number;
  36. url?: string;
  37. width?: number;
  38. };
  39. name: string;
  40. offsetX: number;
  41. offsetY: number;
  42. opacity: number;
  43. paddingLeftRight: number;
  44. paddingTopBottom: number;
  45. series: string;
  46. shadow: {
  47. blur?: number;
  48. color?: string;
  49. offsetX?: number;
  50. offsetY?: number;
  51. opacity?: number;
  52. };
  53. text: string;
  54. textOverflow: string;
  55. tooltipEnabled: boolean;
  56. type: string;
  57. value: Date | number | string;
  58. width: number;
  59. wordWrap: string;
  60. x: number;
  61. y: number;
  62. }