APICommon APIDataCollection APIDataCollection eventsloadOn this pageload Description Fires when data is loaded into the diagramUsageload: () => void;Example// initializing Diagramconst diagram = new dhx.Diagram("diagram_container", { type: "default"});// loading datadiagram.data.parse(data);// attaching a handler to the eventdiagram.events.on("load", () => { // some logic here});