如何混合不同的plantuml图类型元素?

时间:2019-01-03 10:44:05

标签: plantuml

我想在一张和同一张渲染的plantuml图片中包含部署和排序内容。因此,我尝试了以下操作,但它不起作用,渲染显示了部署时A,B和C的序列内容。

如何强制将“ A-> B”和“ B-> C”渲染为顺序图素材?

@startuml
file main.c
note right: I want to have description text here

A -> B : main()
note left : program\nentry function
B -> C : load()
note left : another important function
@enduml

1 个答案:

答案 0 :(得分:1)

我认为您需要稍后添加笔记:

@startuml
title file main.c

A -> B : main()
note left : program\nentry function
B -> C : load()
note left : another important function

note right: I want to have description text here
@enduml

结果:

generated output