Cutting off component diagram interfaces

0 votes
asked Dec 3, 2018 in Question / help by anonymous
On the PlantUML website component diagram example with interfaces results in the diagram being cut off:

http://plantuml.com/component-diagram - Basic example.

Also when I try this on planttext.com

```

@startuml

package "Training Session" {
  [Pretraining]
  [Training]
  [Posttraining]
}

interface "FB1 Train" as FB1Snapshot
interface "FB1 Merge" as FB1Train

FB1Snapshot - [Pretraining]
FB1Train - [Posttraining]
[Pretraining] --> [Training]
[Training] --> [Posttraining]

@enduml

```

It also shows that the interfaces get cut off in the resulting diagram.

1 Answer

+1 vote
answered Dec 3, 2018 by plantuml (295,000 points)
Thanks for the feedback.

This should be fixed in last beta http://beta.plantuml.net/plantuml.jar
commented Dec 4, 2018 by albert (3,520 points)
Looks fixed to me in 1.2018.14beta3
...