tooltip.d.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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 DxoTooltipComponent extends NestedOption {
  17. arrowLength: number;
  18. border: {
  19. color?: string;
  20. dashStyle?: string;
  21. opacity?: number;
  22. visible?: boolean;
  23. width?: number;
  24. };
  25. color: string;
  26. container: Element | JQuery;
  27. cornerRadius: number;
  28. customizeTooltip: Function;
  29. enabled: boolean;
  30. font: DevExpress.viz.Font;
  31. format: DevExpress.ui.format | string;
  32. opacity: number;
  33. paddingLeftRight: number;
  34. paddingTopBottom: number;
  35. shadow: {
  36. blur?: number;
  37. color?: string;
  38. offsetX?: number;
  39. offsetY?: number;
  40. opacity?: number;
  41. };
  42. zIndex: number;
  43. argumentFormat: DevExpress.ui.format | string;
  44. location: string;
  45. shared: boolean;
  46. isShown: boolean;
  47. text: string;
  48. position: string;
  49. showMode: string;
  50. customizeLinkTooltip: Function;
  51. customizeNodeTooltip: Function;
  52. protected readonly _optionPath: string;
  53. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  54. }
  55. export declare class DxoTooltipModule {
  56. }