layer-dxi.d.ts 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 DxiLayerComponent extends CollectionNestedOption {
  17. borderColor: string;
  18. borderWidth: number;
  19. color: string;
  20. colorGroupingField: string;
  21. colorGroups: Array<number>;
  22. customize: Function;
  23. dataField: string;
  24. dataSource: any | DevExpress.data.DataSource | DevExpress.data.DataSourceOptions | string;
  25. elementType: string;
  26. hoveredBorderColor: string;
  27. hoveredBorderWidth: number;
  28. hoveredColor: string;
  29. hoverEnabled: boolean;
  30. label: {
  31. dataField?: string;
  32. enabled?: boolean;
  33. font?: DevExpress.viz.Font;
  34. };
  35. maxSize: number;
  36. minSize: number;
  37. name: string;
  38. opacity: number;
  39. palette: string | Array<string>;
  40. paletteSize: number;
  41. selectedBorderColor: string;
  42. selectedBorderWidth: number;
  43. selectedColor: string;
  44. selectionMode: string;
  45. size: number;
  46. sizeGroupingField: string;
  47. sizeGroups: Array<number>;
  48. type: string;
  49. protected readonly _optionPath: string;
  50. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  51. }
  52. export declare class DxiLayerModule {
  53. }