Component Diagram
Comments
Please take a look at http://plantuml.sourceforge.net/component.html for more details and samples.
I've had a look at the PlantUML site but have I missed any options to fix alignment of components and size of them.
For example I have a top block I want to be the same size of the four blocks below it combined (as if to umbrella the four components) but at the moment the top block is off to the very right of the below four and is as small as it's name will allow
Sorry, but the Confluence PlantUML Plugin do not add any extra options to layout components beside the "standard" options from the PlantUML site.
Do you have an example (Plantuml code) of such diagram?
How I can create only horizontal / vertical arrows?
I see next options that don't work: http://plantuml.com/component-diagram
You can also change directions by reversing the link:
@startuml
Interface1 <-- [Component]
Interface2 <- [Component]
@enduml
It is also possible to change arrow direction by adding left, right, up or down keywords inside the arrow:
@startuml
[Component] -left-> left
[Component] -right-> right
[Component] -up-> up
[Component] -down-> down
@enduml
I also really need this functionality. Due to lack of that, some diagram is rendered as I expected.
Due to lack of that, some diagram is rendered as I expected.
Sorry, there is a typo. What I wanted to say is …
Due to lack of that, some diagram is NOT rendered as I expected.
How can show a dependencies between packages?