I want to add an icon when we collapse a group elements. Below the Group name.
How to Add an Image in group when group is collapse?
Can anyone help me?
Add a Picture in your Group template and have it include a Binding:
new go.Binding("visible", "isSubGraphExpanded").ofObject()
I need to show it when Group.isSubGraphExpanded is false.
Use a converter:
function(x) { return !x; }
Thanks a lot.