File tree Expand file tree Collapse file tree 2 files changed +10
-1
lines changed
projects/igniteui-angular/src/lib/grids Expand file tree Collapse file tree 2 files changed +10
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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 ;
You can’t perform that action at this time.
0 commit comments