A plugin that manages the grouping state.
Use the following statement to import the plugin:
import { GroupingState } from '@devexpress/dx-react-scheduler';
None
Name | Type | Default | Description |
---|---|---|---|
grouping? | Array<Grouping> | Specifies resources to group by. | |
groupOrientation? | (viewName: string) => GroupOrientation | () => 'Horizontal' |
A function that allows you to specify different group orientations for different views. Should return "Vertical" or "Horizontal" . |
groupByDate? | (viewName: string) => boolean | () => false |
Specifies whether appointments should be grouped by date in a specific view. |
Describes grouping options.
Field | Type | Description |
---|---|---|
resourceName | string | The name of the resource by which the appointments are grouped. |
Describes group orientation.
Type: Vertical
| Horizontal