i am using this in a flow diagram, is there a way to make the text above the arrow BOLD?

0 votes
asked Jul 21, 2016 in Bug by fredguthrie (120 points)

1 Answer

0 votes
answered Jul 21, 2016 by plantuml (294,960 points)

You can use <b> notation.

Example:

@startuml
start
-> This is <b>Bold</b>.;
:foo;
@enduml

http://plantuml.com/plantuml/uml/Aov9B2hXqhLJ2Cd8B5O08fiaEwVyd1GR_IGxFMikgxJyV6i0

Is this what you are looking for ?

 

commented Jul 22, 2016 by anonymous
yes this worked great. thank you
...