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!

  • Check out the features or bugs others have reported and vote on your favorites. Feedback will be prioritized based on popularity.
  • If you have feedback that’s not listed yet, submit your own.

Thanks for joining our community and helping improve Syncfusion products!

1
Vote

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