[duplicate] ClassDiagram: Lines not properly hidden when using groupInheritance

0 votes
asked Sep 23, 2023 in To be deleted by mamyz (160 points)
recategorized Sep 23, 2023 by mamyz

Hi, newbie here. I found an issue when using hidden connections to force placement. When using groupInheritance, hidden connections still show endpoints. 

@startuml
C<|-left[hidden]->B
C<-left[hidden]-|>B
A<-left[hidden]-|>B
skinparam groupInheritance 2
@enduml

I might have posted this earlier, but was having issues with the website, so I am not sure if it got posted, since i cannot find it.   I just wasn't signed in so it wasn't shown

https://forum.plantuml.net/18256/classdiagram-lines-properly-hidden-using-groupinheritance

1 Answer

0 votes
answered Mar 12 by dickmaley (4,120 points)

Hidden connections are gone.

image

@startuml
<style>
  arrow {
    FontColor: transparent;
    FontName:sans serif;
    FontSize: 14;
    FontStyle: Bold;
    LineColor: transparent;
    LineThickness: 1;
  }
</style>
C<|-left[hidden]->B
C<-left[hidden]-|>B
A<-left[hidden]-|>B
skinparam groupInheritance 2
@enduml

...