hh:mm:ss time format in timing diagram

0 votes
asked Jan 23, 2018 in Wanted features by zednight
Please add an opportunity to use time in hh:mm:ss format in timing diagram.
commented Aug 20, 2019 by javaburre
Or even date (dd/MM/yyyy) format so we can use this diagram to generate a graphical presentation of the status history of a ticket (requested, picked, blocked, completed).

@startuml
concise "Task 001" as WU
@0
WU is New
@100
WU is Open
@300
WU is "On Hold"
@400
WU is Open
@800
WU is Closed
@enduml

1 Answer

0 votes
answered Aug 22, 2019 by plantuml (295,000 points)

We like the idea.

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

@startuml
robust "Web Browser" as WB
concise "Web User" as WU

@0
WU is Idle
WB is Idle

@0:00:30
WU is Waiting : some note
WB is Processing : some other note

@0:01:30
WB is Waiting
@enduml

Date are more difficult to add : we will think about it.

commented Aug 22, 2019 by plantuml (295,000 points)

Finally, we've done date too :-)

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

@startuml
robust "Web Browser" as WB
concise "Web User" as WU

@2019/07/02
WU is Idle
WB is Idle

@2019/07/04
WU is Waiting : some note
WB is Processing : some other note

@2019/07/05
WB is Waiting
@enduml

Is this what you are looking for ?

commented Aug 23, 2019 by zednight (100 points)
Thank you very much. I need some time to check this up. But I will definitely give feedback.
commented Jan 31, 2020 by zednight
Sorry for so long feedback. It's work great. Thank's
commented Feb 21, 2020 by Vladimir
Thanks for this feature!

It would also be very useful if the specified time could contain millisecond part, i.e. @0:01:30,555.
...