Skip to content

Commit a72ec48

Browse files
Added documentation for min/max height in IgxGridExcelStyleFilteringComponent (#14615)
1 parent 140981f commit a72ec48

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

projects/igniteui-angular/src/lib/grids/filtering/excel-style/excel-style-filtering.component.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -221,6 +221,16 @@ export class IgxGridExcelStyleFilteringComponent extends BaseFilteringComponent
221221

222222
/**
223223
* Gets the minimum height.
224+
*
225+
* Setting value in template:
226+
* ```ts
227+
* [minHeight]="'<number><unit (px|rem|etc..)>'"
228+
* ```
229+
*
230+
* Example for setting a value:
231+
* ```ts
232+
* [minHeight]="'700px'"
233+
* ```
224234
*/
225235
@Input()
226236
public get minHeight(): string {
@@ -258,6 +268,16 @@ export class IgxGridExcelStyleFilteringComponent extends BaseFilteringComponent
258268

259269
/**
260270
* Gets the maximum height.
271+
*
272+
* Setting value in template:
273+
* ```ts
274+
* [maxHeight]="'<number><unit (px|rem|etc..)>'"
275+
* ```
276+
*
277+
* Example for setting a value:
278+
* ```ts
279+
* [maxHeight]="'700px'"
280+
* ```
261281
*/
262282
@Input()
263283
@HostBinding('style.max-height')

0 commit comments

Comments
 (0)