crosshair.d.ts 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  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 DxoCrosshairComponent extends NestedOption {
  17. color: string;
  18. dashStyle: string;
  19. enabled: boolean;
  20. horizontalLine: boolean | {
  21. color?: string;
  22. dashStyle?: string;
  23. label?: {
  24. backgroundColor?: string;
  25. customizeText?: Function;
  26. font?: DevExpress.viz.Font;
  27. format?: DevExpress.ui.format | string;
  28. visible?: boolean;
  29. };
  30. opacity?: number;
  31. visible?: boolean;
  32. width?: number;
  33. };
  34. label: {
  35. backgroundColor?: string;
  36. customizeText?: Function;
  37. font?: DevExpress.viz.Font;
  38. format?: DevExpress.ui.format | string;
  39. visible?: boolean;
  40. };
  41. opacity: number;
  42. verticalLine: boolean | {
  43. color?: string;
  44. dashStyle?: string;
  45. label?: {
  46. backgroundColor?: string;
  47. customizeText?: Function;
  48. font?: DevExpress.viz.Font;
  49. format?: DevExpress.ui.format | string;
  50. visible?: boolean;
  51. };
  52. opacity?: number;
  53. visible?: boolean;
  54. width?: number;
  55. };
  56. width: number;
  57. protected readonly _optionPath: string;
  58. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  59. }
  60. export declare class DxoCrosshairModule {
  61. }