plantuml / backlog

Contains all issues for plantuml that are not currently working-in-progress
0 stars 0 forks source link

(timing diagram) allow to change hexagon border color #28

Open patrickvp opened 4 years ago

patrickvp commented 4 years ago

I would like to change the color for of all border color of all hexagons in in my timing diagrams. If tried to change defaultBorderColor etc., but no success. Could this be implemented please or how to use it?

arnaudroques commented 1 year ago

Could you give a short example of one example of your timing diagram? So that we could talk about that example. Thanks!

The-Lum commented 1 month ago

Hi @patrickvp,

For that you can now use style as:

@startuml
<style>
timingDiagram {
 concise {
  LineStyle 12-4
  LineThickness 3
  LineColor Blue
 }
}
</style>
scale 1 as 50 pixels

concise state0
concise substate1
robust bit2

bit2 has HIGH,LOW

@state0
0 is 18_start
6 is s_dPause
8 is 10_data
14 is {hidden}

@substate1
0 is sSeq
4 is sPause
6 is {hidden}
8 is dSeq
12 is dPause
14 is {hidden}

@bit2
0 is HIGH
2 is LOW
4 is {hidden}
8 is HIGH
10 is LOW
12 is {hidden}
@enduml

Enjoy... To be close

Regards, Th.