Hi, I have problem with class diagram when I set linetype to ortho.
Here's example
@startuml
namespace System.Security.Principal {
interface IPrincipal
interface IIdentity
IPrincipal -> IIdentity : Identity
}
namespace System.Security.Claims {
class ClaimsPrincipal {
}
class ClaimsIdentity {
}
ClaimsPrincipal o- ClaimsIdentity : Identities
ClaimsIdentity o-- ClaimsIdentity : Actor
}
System.Security.Principal.IPrincipal <|-- System.Security.Claims.ClaimsPrincipal
System.Security.Principal.IIdentity <|-- System.Security.Claims.ClaimsIdentity
@enduml
If you can see the image, there are missing labels Identities and Actor on relations and relations are going out of package frame.