Skip to content

Commit 6f2bb11

Browse files
committed
chore(grid-pinning): Apply review notes
1 parent 2a78365 commit 6f2bb11

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

projects/igniteui-angular/src/lib/grids/grid-base.directive.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -802,6 +802,16 @@ export class IgxGridBaseDirective extends DisplayDensityBase implements
802802
@Input()
803803
public columnHidingTitle = '';
804804

805+
/**
806+
* Gets/Sets the initial pinning configuration.
807+
* @remarks
808+
* Allows to apply pinning the columns to the start or the end.
809+
* Note that pinning to both sides at a time is not allowed.
810+
* @example
811+
* ```html
812+
* <igx-grid [pinning]="pinningConfig"></igx-grid>
813+
* ```
814+
*/
805815
@Input()
806816
public pinning: IPinningConfig = { columns: ColumnPinningPosition.Start };
807817

projects/igniteui-angular/src/lib/grids/headers/grid-header-group.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ export class IgxGridHeaderGroupComponent implements DoCheck {
172172

173173
/**
174174
* Gets whether the header group is stored in the first column of the right pinned area.
175-
* @memberof IgxGridHeaderGroupComponent
176175
*/
177176
get isFirstPinned(): boolean {
178177
return !this.grid.hasColumnLayouts ? this.column.isFirstPinned : false;

0 commit comments

Comments
 (0)