0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

plantUMLの加工方法

Posted at

はじめに

今回は以前から何度か書いているplantUMLで編集をする方法を紹介していきます

本文

まず、背景色は下記のように記述することで変更することができます
宣言した行の末尾にハッシュをつけて色を指定することで変更ができます
これはすでに用意されているものであれば名前でできますが、カラコードを利用することも可能です

actor Bob #red
participant "I have a really\nlong name" as L #99FF99

次に順番の変更です。
plantUMLでは何もしない場合、宣言した通りの順番に表示されます。
しかしorderを使用することで表示順を自由に変更できます

@startuml
participant Last order 30
participant Middle order 20
participant First order 10
@enduml

最後に

今回は表示順や背景色などの加工方法を紹介していきました
次にplantUMLの記事を書く時は少し特殊なparticipantなどの記述方法を紹介しようと思います

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?