Hello PlantUML team,
FYI: 'Colored links' seems broken on last version.
From: https://forum.plantuml.net/11877/how-to-change-color-or-thickness-style-arrows-gantt-diagram?show=11993#a11993
@startuml
Links are colored in blue
[Prototype design] lasts 14 days
[Build prototype] lasts 4 days
[Prepare test] lasts 6 days
[Prototype design] -[#012]-> [Build prototype]
[Prototype design] -[dotted]-> [Prepare test]
@enduml
-> Perhaps now it is deprecated and now we must use instead style for that:
@startuml
<style>
ganttDiagram {
arrow {
LineColor blue
}
}
</style>
'Links are colored in blue
[Prototype design] lasts 14 days
[Build prototype] lasts 4 days
[Prepare test] lasts 6 days
[Prototype design] -[#012]-> [Build prototype]
[Prototype design] -[dotted]-> [Prepare test]
@enduml
Regards,
Th.