Replies: 4 comments 1 reply
-
What about defining the relationship type in addition to the container layout?
Or some variant of the above that fits within your standards. :) |
Beta Was this translation helpful? Give feedback.
-
the ability to specify it on a relationship level is possible in TALA, since it's our custom engine and we can do anything, but I don't think that granularity is supported in dagre/graphviz/elk. it's a good idea, but we'll probably do the container one first since it's portable across layout engines. ty @prowave |
Beta Was this translation helpful? Give feedback.
-
I agree - this is an important feature, especially when having extensive diagrams |
Beta Was this translation helpful? Give feedback.
-
This should actually come after glob support. Because we want it to apply recursively. e.g. a: {
# All descendants + this container will have vertical
**.orientation: vertical
} |
Beta Was this translation helpful? Give feedback.
-
These should be scoped to containers. E.g. something like
so
a
andb
would be horizontal, the contents ofa
would be horizontal, and the contents ofb
would be vertical.not sure
arrangement
is the best keyword here.also for the value, other tools use
LR
andTD
, which... is perhaps more descriptive, but less obvious to read. e.g. it wasn't clear to me for a long time that graphviz'sgraph TD
wasn't just a header to be placed on every diagram and that it actually stood for top-down.Beta Was this translation helpful? Give feedback.
All reactions