Skip to content

Commit

Permalink
Mtihova/fix 14450 master (#14814)
Browse files Browse the repository at this point in the history
  • Loading branch information
MarielaTihova authored Sep 24, 2024
1 parent d184b99 commit c5b0528
Showing 1 changed file with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -221,6 +221,16 @@ export class IgxGridExcelStyleFilteringComponent extends BaseFilteringComponent

/**
* Gets the minimum height.
*
* Setting value in template:
* ```ts
* [minHeight]="'<number><unit (px|rem|etc..)>'"
* ```
*
* Example for setting a value:
* ```ts
* [minHeight]="'700px'"
* ```
*/
@Input()
public get minHeight(): string {
Expand Down Expand Up @@ -248,6 +258,16 @@ export class IgxGridExcelStyleFilteringComponent extends BaseFilteringComponent

/**
* Gets the maximum height.
*
* Setting value in template:
* ```ts
* [maxHeight]="'<number><unit (px|rem|etc..)>'"
* ```
*
* Example for setting a value:
* ```ts
* [maxHeight]="'700px'"
* ```
*/
@Input()
@HostBinding('style.max-height')
Expand Down

0 comments on commit c5b0528

Please sign in to comment.