Skip to content

Commit

Permalink
Merge pull request #4284 from IgniteUI/grid-column-inputs-hidden-doc-…
Browse files Browse the repository at this point in the history
…7.1.x

fix(column.component): make headerGoupClasses visible for API gen DOC
  • Loading branch information
kdinev authored Mar 15, 2019
2 parents 5f3bf75 + 97008b6 commit 3bee73d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion projects/igniteui-angular/src/lib/grids/column.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -318,8 +318,16 @@ export class IgxColumnComponent implements AfterContentInit {
*/
@Input()
public headerClasses = '';

/**
*@hidden
* Sets/gets the class selector of the column group header.
* ```typescript
* let columnHeaderClass = this.column.headerGroupClasses;
* ```
* ```html
* <igx-column [headerGroupClasses] = "'column-group-header'"></igx-column>
* ```
* @memberof IgxColumnComponent
*/
@Input()
public headerGroupClasses = '';
Expand Down

0 comments on commit 3bee73d

Please sign in to comment.