Hi Xia Guangwei,
Thanks for contacting syncfusion support.
We can hide the group row task bar by using queryTaskbarInfo event, please check the below code snippet for details.
[gantt.html]
$("#resourceGantt").ejGantt({
//…
queryTaskbarInfo:function(args){
if(args.data.hasChildRecords)
$(args.taskbar).find(".e-parentContainer").css('display', 'none');
}
}); |
We have also prepared a sample for this and please find the same below.
Regards,
Gurunathan