Skip to main content

All Questions

Tagged with
1 vote
1 answer
463 views

Why am I getting a plantUML syntax error with a statechart in a package? [closed]

I try to run the following code on plantuml webserver. @startuml package "CI/CD and Monitoring System" { state "CI/CD Pipeline" { [*] --> Idle state Idle {...
Pranay Batta 21BDS0100's user avatar
6 votes
1 answer
3k views

Plantuml - Rearrangement of components and packages

I try to arrange the components and packages as shown on the first screenshot. Is there any chance to do it like this (Screenshot 1) Please find my current approach here (Screenshot 2) And uml ...
HKC72's user avatar
  • 522
6 votes
3 answers
11k views

Align packages vertically in PlantUML

I have a class structure of something like this: @startuml package "A" { ABase <|-- A1 ABase <|-- A2 ABase <|-- A3 } package "B" { BBase <|-- B1 BBase <|-- B2 BBase &...
petersohn's user avatar
  • 11.6k
0 votes
1 answer
1k views

PlantUML: Packages next to each other, components in a list

I want to have 2 packages next to each other and the containing components among each other. Goal (Draft): Code: @startuml left to right direction () Mechanical () Hydraulical () Electrical ...
Human_BetaRelease's user avatar
6 votes
1 answer
11k views

PlantUML and notes on packages

I am trying to figure out how PlantUML manages notes. Below you can see a small example where the behavior seems buggy. @startuml package package{ 'note bottom : this seems to be the correct ...
ekrempe's user avatar
  • 103
3 votes
2 answers
5k views

How to generate UML package diagram with nested packages which may contain same names in different level?

I want to generate a package diagram with hierarchical packages which may contain duplicated names but not in the same level. e.g.: @startuml package A { package B { package C } ...
Vivodo's user avatar
  • 1,564