Number: 1279 Title: Allow different rankdir for subgraph cluster Submitter: Pander Date: Wed Jan 23 12:23:18 2008 Subsys: Dot Version: 2.17 System: *-*- Severity: minor Problem: Allow different rankdir, e.g. LR, for a subgraph (cluster) when rankdir for the rest of the graph is in this case TB. Input:
digraph "test" {
rankdir=TB
a -> b
subgraph cluster_c {
rankdir=LR
d -> e
}
}