GajarubanJeyakumar Hi, I wonder if there is a way to disable resize of the bars in the gantt chart? Thankyou for your help. Br. Ruban
Helga Hi, Sure, you can handle the drag-task event and intercept it when bar position or size are about to change: api.intercept("drag-task", ev => { if (ev.width || ev.left) return false; }); Here's a live sample: https://docs.svar.dev/svelte/gantt/samples/#/prevent-actions/willow And its code: https://github.com/svar-widgets/gantt/blob/main/svelte/demos/cases/GanttPreventActions.svelte#L22