-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Direct linetype #42
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Hi, So instead of: @startuml
!includeurl https://raw.githubusercontent.com/RicardoNiepel/C4-PlantUML/release/1-0/C4_Container.puml
Person(customer, "Personal Banking Customer", "A customer of the bank, with personal bank accounts.")
System(banking_system, "Internet Banking System", "Allows customers to view information about their bank accounts, and make payments.")
System_Ext(mail_system, "E-mail system", "The internal Microsoft Exchange e-mail system.")
Rel(customer, banking_system, "Uses")
Rel(banking_system, mail_system, "Sends e-mail using")
Rel(customer, mail_system, "Sends e-mails to")
@enduml you could try to force drawing the entities in a rectangle shape like @startuml
!includeurl https://raw.githubusercontent.com/RicardoNiepel/C4-PlantUML/release/1-0/C4_Container.puml
skinparam linetype polyline
Person(customer, "Personal Banking Customer", "A customer of the bank, with personal bank accounts.")
System(banking_system, "Internet Banking System", "Allows customers to view information about their bank accounts, and make payments.")
System_Ext(mail_system, "E-mail system", "The internal Microsoft Exchange e-mail system.")
Rel(customer, banking_system, "Uses")
Rel(banking_system, mail_system, "Sends e-mail using")
Rel(customer, mail_system, "Sends e-mails to")
Lay_R(customer, mail_system)
@enduml It's more of a PlantUML issue though. |
Thank you for your answer! I know this hack from C4 styles:) |
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions. |
Closing as this issue lies in the upstream project PlantUML and can not be fixed in this repo. |
Hi!
Currently, 2 types of relationships are supported (skinparam linetype):
-ortho (when the bend angles of the arrows are at right angles (skinparam linetype ortho))
Is it possible to establish a “direct” connection style when each element is connected and the arrows do not bend?
The text was updated successfully, but these errors were encountered: