TLmaK0 / gravizo

How to include graphviz graphs in github README

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Actor is Hardcoded to User

chunkiat82 opened this issue · comments

![graph](https://g.gravizo.com/svg?
@startuml;
actor SpringBoot;
participant "First Class" as A;
participant "Second Class" as B;
participant "Last Class" as C;
User -> A: DoWork;
activate A;
A --> User: Done;
deactivate A;
@enduml)

image

Hi @chunkiat82, I'm not sure were is the problem. Can you give me what your are expecting from this graph? Something like this?:

![graph](https://g.gravizo.com/svg?
@startuml;
actor SpringBoot;
participant "First Class" as A;
participant "Second Class" as B;
participant "Last Class" as C;
SpringBoot -> A: DoWork;
activate A;
A --> SpringBoot: Done;
deactivate A;
@enduml
)
image