group.d.ts 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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 DxoGroupComponent extends NestedOption {
  17. border: {
  18. color?: string;
  19. width?: number;
  20. };
  21. color: string;
  22. headerHeight: number;
  23. hoverEnabled: boolean;
  24. hoverStyle: {
  25. border?: {
  26. color?: string;
  27. width?: number;
  28. };
  29. color?: string;
  30. };
  31. label: {
  32. font?: DevExpress.viz.Font;
  33. textOverflow?: string;
  34. visible?: boolean;
  35. };
  36. selectionStyle: {
  37. border?: {
  38. color?: string;
  39. width?: number;
  40. };
  41. color?: string;
  42. };
  43. protected readonly _optionPath: string;
  44. constructor(parentOptionHost: NestedOptionHost, optionHost: NestedOptionHost);
  45. }
  46. export declare class DxoGroupModule {
  47. }