Skip to content

Commit

Permalink
fix(react-grid): fix incorrect prop types for CustomGrouping (#946)
Browse files Browse the repository at this point in the history
fixes #941
  • Loading branch information
kvet authored Apr 18, 2018
1 parent 6d759db commit fdf492f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/dx-react-grid/docs/reference/custom-grouping.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ A plugin that converts custom formatted grouped data to a supported format and p
Name | Type | Default | Description
-----|------|---------|------------
getChildGroups | (currentRows: Array<any>, grouping: [Grouping](grouping-state.md#grouping), rootRows: Array<any>) => Array<{ key: number | string, value?: any, childRows?: Array<any> }> | | A function that extracts groups from the specified data. It is executed recursively for the root and nested groups.
grouping? | Array<[Grouping](grouping-state.md#grouping)> | | Specifies columns by which data is grouped.
expandedGroups? | Array<[GroupKey](grouping-state.md#group-key)> | | Specifies the expanded groups.
grouping? | Array<[Grouping](grouping-state.md#grouping)> | null | | Specifies columns by which data is grouped.
expandedGroups? | Array<[GroupKey](grouping-state.md#group-key)> | null | | Specifies the expanded groups.

## Plugin Developer Reference

Expand Down

0 comments on commit fdf492f

Please sign in to comment.