hi,
i would like to define a container ( rectangle, node...) with an alias for referencing it in a relationship but without a name.
Unfortunately, this is not working :
rectangle as r1 {
rectangle child1
rectangle child2
}
we must do
rectangle " some name" as r1
{
rectangle child1
rectangle child2
}
In that case, r1 is used for the relationships, and "some name" is the displayed name
Or
rectangle r1
{
rectangle child1
rectangle child2
}
In that case, r1 is used for the relationships and is also the displayed name
Is it possible to wrap elements into a container with only an alias without a displayed name?
thanks