FontColor for Timing diagrams

0 votes
asked Oct 30, 2018 in Wanted features by lavr1n (120 points)
For now I see that to change FontColor for Timing diagrams I need to use ActivityFontColor, which is not so convenient. I want ho have separate FontColor for Activity and Timing diagrams.

Thanks.
commented Oct 31, 2018 by albert (3,520 points)
Can you please attach to the question a small example showing your problem?

1 Answer

0 votes
answered Nov 4, 2018 by plantuml (294,660 points)

With last beta http://beta.plantuml.net/plantuml.jar you can now have :

@startuml
skinparam TimingFontSize 22
skinparam TimingFontColor red
robust "Flow rate" as rate
rate has "35 gpm" as high
rate has "15 gpm" as low
rate has "0 gpm" as none

@0
rate is high

@5
rate is none

@6
rate is low
@enduml
...