onParse

fires after data was parsed (became available for API) but before it was rendered in the Gantt chart

void onParse();

Example

gantt.init("gantt_here");
gantt.attachEvent("onParse", function(){alert("Data was parsed")});
 
gantt.parse(demo_tasks);

See also
Back to top