Table inside legend (with slat) is not giving table borders

0 votes
asked Jul 7, 2015 in Wanted features by naresh_pallam (180 points)
Hi

Below example is not showing table borders (Rows and columns). Is there a way we can specify the borders in below example ?

 

a -> b : nothing
legend top left
**Summary**
{{
salt
{
**Type ** | **SID** | ** HA **| **HC**
.|    .|  .|    .
SS|3|5000|95
SS|5|10|95
}
}}
endlegend

2 Answers

0 votes
answered Jul 12, 2015 by plantuml (298,440 points)

Hello,

You can have:

a -> b : nothing
legend top left
**Summary**
{{
salt
{#
**Type ** | **SID** | ** HA **| **HC**
.|    .|  .|    .
SS|3|5000|95
SS|5|10|95
}
}}
endlegend

Is this what you are expecting ?

0 votes
answered Jul 12, 2015 by plantuml (298,440 points)

Note that you can also use creole table ( http://plantuml.com/creole.html )

a -> b : nothing
legend top left
**Summary**
|= Type |= SID |= HA |= HC |
| | | |
|SS | 3 | 5000 | 95 |
|SS | 5 | 10 | 95 |
endlegend

...