legend-dxi.d.ts 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  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 { CollectionNestedOption } from '../../core/nested-option';
  16. export declare class DxiLegendComponent extends CollectionNestedOption {
  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. itemTextPosition: string;
  35. margin: number | {
  36. bottom?: number;
  37. left?: number;
  38. right?: number;
  39. top?: number;
  40. };
  41. markerColor: string;
  42. markerShape: string;
  43. markerSize: number;
  44. orientation: string;
  45. paddingLeftRight: number;
  46. paddingTopBottom: number;
  47. rowCount: number;
  48. rowItemSpacing: number;
  49. source: {
  50. grouping?: string;
  51. layer?: string;
  52. };
  53. title: string | {
  54. font?: DevExpress.viz.Font;
  55. horizontalAlignment?: string;
  56. margin?: {
  57. bottom?: number;
  58. left?: number;
  59. right?: number;
  60. top?: number;
  61. };
  62. placeholderSize?: number;
  63. subtitle?: string | {
  64. font?: DevExpress.viz.Font;
  65. offset?: number;
  66. text?: string;
  67. };
  68. text?: string;
  69. verticalAlignment?: string;
  70. };
  71. verticalAlignment: string;
  72. visible: boolean;
  73. protected readonly _optionPath: string;
  74. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  75. }
  76. export declare class DxiLegendModule {
  77. }