Hi Michal,
Thank you for contacting Syncfusion support.
We have analyzed your requirement. We can roundoff the duration value by enabling the roundOffDuration event argument in “taskbarEditing” client-side event. Please refer the below code snippet.
|
<script type="text/javascript">
$(function () {
$("#GanttContainer").ejGantt({
dataSource: projectData,
taskbarEditing: function (args) {
args.roundOffDuration = true;
}
//..
});
});
</script> |
We have prepared the sample for your reference please find the sample link below
Also, we do have a KB document for this query, please find the KB link below,
Please let us know if you require further assistance on this.
Regards,
John R