With the new styling, I'm not sure how to remove the border line from a highlight in a timing diagram. The example shows how to change the line color, but not how to remove it. Closest I can come is to make it the same color as the highlight, but this still is not quite right.
@startuml
robust "Web Browser" as WB
concise "Web User" as WU
@0
WU is Idle
WB is Idle
@100
WU -> WB : URL
WU is Waiting #LightCyan;line:Aqua
@200
WB is Proc.
@300
WU -> WB@350 : URL2
WB is Waiting
@+200
WU is ok
@+200
WB is Idle
highlight 200 to 450 #Gold;line:Gold : This is my caption
highlight 600 to 700 : This is another\nhighlight
@enduml
Note how the gold line is visible in the WebUser (WU) item
Can't I just make the line hidden or transparent? I've been unable to figure out how. I know with the "new" stylesheet I can change the styling, but I don't see what to set linestyle to for that. Is there documentation somewhere explaining the new linestyle?
LineStyle 4-4 --- I believe this is the default for the highlight in a timing diagram, but I don't know how to "remove" the line.
Thanks in advance for the help!