legend.d.ts 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  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 DxoLegendComponent extends NestedOption {
  17. backgroundColor: string;
  18. border: {
  19. color?: string;
  20. cornerRadius?: number;
  21. dashStyle?: string;
  22. opacity?: number;
  23. visible?: boolean;
  24. width?: number;
  25. };
  26. columnCount: number;
  27. columnItemSpacing: number;
  28. customizeHint: Function;
  29. customizeItems: Function;
  30. customizeText: Function;
  31. font: DevExpress.viz.Font;
  32. horizontalAlignment: string;
  33. itemsAlignment: string;
  34. itemTextFormat: DevExpress.ui.format | string;
  35. itemTextPosition: string;
  36. margin: number | {
  37. bottom?: number;
  38. left?: number;
  39. right?: number;
  40. top?: number;
  41. };
  42. markerSize: number;
  43. orientation: string;
  44. paddingLeftRight: number;
  45. paddingTopBottom: number;
  46. rowCount: number;
  47. rowItemSpacing: number;
  48. title: string | {
  49. font?: DevExpress.viz.Font;
  50. horizontalAlignment?: string;
  51. margin?: {
  52. bottom?: number;
  53. left?: number;
  54. right?: number;
  55. top?: number;
  56. };
  57. placeholderSize?: number;
  58. subtitle?: string | {
  59. font?: DevExpress.viz.Font;
  60. offset?: number;
  61. text?: string;
  62. };
  63. text?: string;
  64. verticalAlignment?: string;
  65. };
  66. verticalAlignment: string;
  67. visible: boolean;
  68. hoverMode: string;
  69. position: string;
  70. protected readonly _optionPath: string;
  71. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  72. }
  73. export declare class DxoLegendModule {
  74. }