I am trying to use node (or a subgraph containing node - whichever is possible / simpler), as shown in this image:

(Note that it doesnโt matter to me if the label โBโ is rotated - only that the โverti- *โ texts in the record [or, more precisely, the whole record node] rotate, as shown)
However, the closest I can do is the following dot code:
digraph graphname { node [fontname=Monospace, fontsize=14]; subgraph clusterMasterBox { node [shape=record]; l1 [label = "{ horiz-1 \r| \ horiz-2 \r| \ horiz-3 \r| \ horiz-4 \r} \ "]; subgraph clusterSubRotateBox { rotate=90; node [shape=record,rotate=90]; l2 [label = "{ verti-1 \r| \ verti-2 \r| \ verti-3 \r| \ verti-4 \r} \ "]; label="B"; } label="A" } }
The only reason I have a subgraph clusterSubRotateBox (and the only reason it is nested inside clusterMasterBox ) is because I was hoping I could assign a rotation for it, but apparently I can't, as the above The above code generates this image:

So my question is: is there a way to rotate the node entry; if not on its own, then perhaps as part of a subgraph (or other kind of โobjectโ)?
Thanks in advance for any suggestions,
Hooray!
source share