@YogeshMohan wrote:
How can i get selected node data in the same order as it is placed using Diagram.selection collection
i am getting data in reverse order while i am using this ....
taken reference form Link : http://gojs.net/latest/intro/collections.html$scope.myDiagram.selection.each(function (part) {
if (part instanceof go.Node) {
console.log(part.data);
}
});
Posts: 2
Participants: 2