Difference between revisions of "PlantUML salt diagram example"

From BITPlan Wiki
Jump to navigation Jump to search
(Created page with "<uml> salt { Just plain text [This is my button] () Unchecked radio (X) Checked radio [] Unchecked box [X] Checked box "Enter text here " ^This is a dropli...")
 
 
Line 1: Line 1:
 +
This example is to explain a solution to issue https://github.com/pjkersten/PlantUML/issues/16
 +
<pre>
 +
<uml>
 +
salt
 +
{
 +
  Just plain text
 +
  [This is my button]
 +
  ()  Unchecked radio
 +
  (X) Checked radio
 +
  []  Unchecked box
 +
  [X] Checked box
 +
  "Enter text here  "
 +
  ^This is a droplist^
 +
}
 +
</uml>
 +
</pre>
 +
 +
will be rendered as:
 
<uml>
 
<uml>
 
salt
 
salt

Latest revision as of 21:42, 7 March 2017

This example is to explain a solution to issue https://github.com/pjkersten/PlantUML/issues/16

<uml>
salt
{
  Just plain text
  [This is my button]
  ()  Unchecked radio
  (X) Checked radio
  []  Unchecked box
  [X] Checked box
  "Enter text here   "
  ^This is a droplist^
}
</uml>

will be rendered as: