I have a GoSubGraph object which I would like to always be the same size whenever it is collapsed, regardless of how big the child objects are within it. Is this even possible?
I tried using:
public override SizeF ComputeCollapsedSize(bool visible)
{
SizeF staticSizw = new SizeF(80, 20);
return staticSizw;
}
but the collapsed size is the smallest rectangle that will hold all child nodes.
Hoping I am just missing something or there is an easy workaround.
Thanks!