Simple text element

0 votes
asked Jan 2, 2020 in Question / help by Alex
Hi,

is it possible to have a simple text element, which behaves like other elements (rectangle, bubbles, actors)?

So where I can draw arrows to and from.

E.g.:

@startuml

(bubble1)

rectangle rect

text simpleText

bubble1 -> rect

rect -> simpleText

@enduml

Thank you!

1 Answer

0 votes
answered Jan 6, 2020 by plantuml (294,960 points)

This is a nice suggestion !

So with last beta:

http://beta.plantuml.net/plantuml.jar

You can now have:

@startuml
(bubble1)
rectangle rect
label simpleText
bubble1 -> rect
rect -> simpleText
@enduml

Is this what you are looking for ?

commented Jan 7, 2020 by Alex
Yeah, this is exactly what I wanted! Thank you!
...