Skip to content

Commit

Permalink
Added documentation for min/max height in IgxGridExcelStyleFilteringC…
Browse files Browse the repository at this point in the history
…omponent (#14614)
  • Loading branch information
MarielaTihova authored Sep 24, 2024
1 parent 8ee61e7 commit 1ea298e
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 1ea298e

Please sign in to comment.