Hello PlantUML team,
- Could you allow all Style for timeline, on timing diagram?
Here is an example:
@startuml
<style>
timingDiagram {
timeline {
FontColor red
FontSize 10
FontStyle italic
LineColor red
LineThickness 2
LineStyle 4;4
BackgroundColor pink
}
}
</style>
clock "Clock_0" as C0 with period 50
binary "Binary" as B
concise "Concise" as C
robust "Robust" as R
@0
C is Idle
R is Idle
@100
B is high
C is Waiting
R is Processing
@300
R is Waiting
@enduml
- The vertical time lines are red (OK), but not (KO) the horizontal time-axis...
Why time-axis is not red?
Regards.