Welcome to the React feedback portal. We’re happy you’re here! If you have feedback on how to improve the React, we’d love to hear it!
Thanks for joining our community and helping improve Syncfusion products!
Demo:
https://stackblitz.com/edit/react-diagram-bug-4
DiagramComponent,getObject(node_id) get me a reference of the node but
DiagramComponent.getNodeObject(node_id) do not get a reference of the node object
const node = diagramInstance.getObject('node1');
node.style.fill = '#FF0000';
has effect but
const node = diagramInstance.getNodeObject('node1');
node.style.fill = '#FF0000';
has no effect