手書き風ダイアグラムスタイル

ダイアグラムが作成途中であることを強調するために、手書き風のダイアグラムを出力することができます。

skinparamでhandwrittentrueに設定します。

アクティビティ図

🎉 Copied!

@startuml
skinparam handwritten true
start
if (Graphviz installed?) then (yes)
  :process all\ndiagrams;
else (no)
  :process only
  __sequence__ and __activity__ diagrams;
endif
stop
@enduml

ボード図

🎉 Copied!

@startboard
skinparam handwritten true
scale .75
A1
+U1.1
++S1 R1
++S1 R2
+U1.2
A2
@endboard

クラス図

🎉 Copied!

@startuml
skinparam handwritten true
class Object
class String extends Object
class Date extends Object
@enduml

ガントチャート

🎉 Copied!

@startgantt
skinparam handwritten true 
hide footbox
Project starts the 2020-12-01

[Task1] lasts 9 days
sunday are closed

note bottom
  memo1 ...
  memo2 ...
  explanations1 ...
  explanations2 ...
end note

[Task2] lasts 10 days
[Task2] starts 7 days after [Task1]'s end
note bottom
  memo1 ...
  memo2 ...
  explanations1 ...
  explanations2 ...
end note
-- Separator title --
[M1] happens on 5 days after [Task1]'s end

-- end --
@endgantt

マインドマップ

🎉 Copied!

@startmindmap
skinparam handwritten true
* World
** America 
*** Canada 
*** Mexico
*** USA
** Europe
***_  England
***_  Germany
***_  Spain
@endmindmap

ネットワーク図

🎉 Copied!

@startuml
skinparam handwritten true

nwdiag {
  network dmz {
      address = "210.x.x.x/24"

      web01 [address = "210.x.x.1"];
      web02 [address = "210.x.x.2"];
  }
  network internal {
      address = "172.x.x.x/24";

      web01 [address = "172.x.x.1"];
      web02 [address = "172.x.x.2"];
      db01;
      db02;
  }
}
@enduml

Salt

🎉 Copied!

@startsalt
skinparam handwritten true
mainframe This is a **mainframe**
{+
  Login    | "MyName   "
  Password | "****     "
  [Cancel] | [  OK   ]
}
@endsalt

シーケンス図

🎉 Copied!

@startuml
skinparam handwritten true
Alice -> Bob : hello
note right: Not validated yet
@enduml

WBS

🎉 Copied!

@startwbs
skinparam handwritten true
* World
** America 
*** Canada 
*** Mexico
*** USA
** Europe
***_  England
***_  Germany
***_  Spain
@endwbs

ワイヤフレーム

🎉 Copied!

@startwire
skinparam handwritten true
* first
* second_box [100x50]
* third
@endwire

WARNING
 This translation need to be updated. 
WARNING


Privacy Policy      Advertise