Hi,
In Gantt chart, for the resources view, we have the option to add resource group, is there a way in the UI, to show the group it self, so all resources will show under it?
This is the resourceFields
<GanttComponent
id='ResourceMultiTaskbar'
ref={ganttRef}
dataSource={ganttData}
treeColumnIndex={1}
viewType='ResourceView'
enableMultiTaskbar={true}
allowRowDragAndDrop={true}
showOverAllocation={true}
allowSelection={true}
highlightWeekends={true}
toolbar={toolbar}
editSettings={editSettings}
resourceFields={resourceFields}
taskFields={taskFields}
taskType={taskType}
labelSettings={labelSettings}
splitterSettings={{ position: "35%" }}
height='410px'
resources={mappedResources}
actionBegin={actionBegin}
actionComplete={actionComplete}
>
<ColumnsDirective>
<ColumnDirective field='TaskID' visible={false}></ColumnDirective>
<ColumnDirective field='TaskName' headerText='Name' width='250'></ColumnDirective>
<ColumnDirective field='work' headerText='Work'></ColumnDirective>
<ColumnDirective field='resourceGroup' headerText='Group'></ColumnDirective>
<ColumnDirective field='StartDate'></ColumnDirective>
</ColumnsDirective>
<Inject services={[Selection, DayMarkers, Toolbar, Edit, RowDD]} />
</GanttComponent>