Hi Manisha,
Greetings from Syncfusion.
To enable DateTime filtering for a custom column, you can use the format and type properties for the specific column. By setting the "type" property to 'datetime' and providing a date format using the format property, the column will support DateTime filtering. Refer code snippets and sample for your reference.
Code-Snippet:
const Editing = () => { return ( <GanttComponent> <ColumnsDirective> <ColumnDirective field="CustomDate" format={'MMM dd, y HH:mm'} type="datetime" width="250" ></ColumnDirective> </ColumnsDirective> </GanttComponent> ); }; |
Sample - Nbaf2q (forked) - StackBlitz
Regards,
Sridharan