Text get cropped out when writing component diagram

0 votes
asked Aug 26, 2018 in Question / help by introom (180 points)
The code is:

node Proxy {
StreamDistributor - [Second Component]
}

The diagram is:

https://i.loli.net/2018/08/26/5b82a81c1d9db.jpg

1 Answer

0 votes
answered Aug 26, 2018 by plantuml (294,960 points)

Thanks for the report.

This issue is close to this one https://github.com/plantuml/plantuml/issues/140

With last release (1.2018.10), you can add skinparam fixCircleLabelOverlapping true that somehow fix the issue :

@startuml
skinparam fixCircleLabelOverlapping true

node Proxy {
StreamDistributor - [Second Component]
}
@enduml

http://www.plantuml.com/plantuml/uml/1S512i903030UrwH3_Y7GZqA2ZsAXxGR9RX9bcnMAkBVEpFrfCYX5VfRh56GubFsMMAhVA6Lw_N3KQariHTc30OmBuotyFsBFrWocFGiFKFMaHvumll2crl1sRMviUK3_Z2nbQ7r0000

commented Aug 26, 2018 by introom (180 points)
which version is used on the website?
the beta.plantuml.com/plantuml.jar doesn't work.  The version is 1.2018.11beta1
commented Aug 26, 2018 by plantuml (294,960 points)
Last beta is on http://beta.plantuml.net/plantuml.jar
But it should also work with last official release http://sourceforge.net/projects/plantuml/files/plantuml.jar/download
commented Aug 26, 2018 by introom (180 points)
I've tried both.  Neither works like the website.
...