Welcome to the React feedback portal. We’re happy you’re here! If you have feedback on how to improve the React, we’d love to hear it!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

<GanttComponent
id="ganttChart"
ref={(gantt) => {
this.ganttInstance = gantt;
}}
dataSource={this.state.dataSource}
taskFields={this.taskFields}
highlightWeekends={true}
timelineSettings={this.state.timelineSettings}
allowSelection={true}
workWeek={this.workWeek}
holidays={this.holidays}
parentTaskbarTemplate={this.parentTaskbarTemplate}
taskbarTemplate={this.taskbarTemplate}
// queryTaskbarInfo={this.queryTaskbarInfo}
projectStartDate={this.startProject}
projectEndDate={this.endProject}
tooltipSettings={this.tooltipSettings}
>
<EventMarkersDirective>
<EventMarkerDirective day={this.today.toDate()} label="Today" />
</EventMarkersDirective>
<ColumnsDirective>
<ColumnDirective
field="title"
headerText="Title"
template={this.gridTemplate}
width={250}
/>
<ColumnDirective field="start_date" />
<ColumnDirective field="end_date" />
</ColumnsDirective>
<Inject services={[Toolbar, Resize, DayMarkers, Selection]} />
</GanttComponent>