Hi,
Today I updated from version: 19.1.0.66 to version 19.2.0.48
But now I can no longer access selected nodes in code behind with this code
SfDiagram diagram = null!;
if (diagram.SelectedItems.Nodes != null && diagram.SelectedItems.Nodes.Count == 1)
ShowNodeResult(diagram.SelectedItems.Nodes.Single());
The property "
diagram.SelectedItems.Nodes" is allways null.
So how do I access the selected node with the new version of the diagram?
PS if I roll back the version it works again