Font size and style of footer

0 votes
asked Dec 24, 2020 in Question / help by UBB

I am not sure what is the exact code to change the font size of the footer.

I know this:

Footer 

<font color=black> This is the text for the footer </font>

endfooter

But how to change the Font family and size?

Secondly, how to change the thickness of box in the sequence diagram?

1 Answer

0 votes
answered Dec 24, 2020 by The-Lu (64,340 points)

Hello U.,

You can use style functionality, as:

<style>

footer {
  HorizontalAlignment left
  FontName Serif
  FontSize 28
  FontColor green
}

box {
  BackGroundColor #palegreen
  FontSize 13
  FontStyle bold
  LineThickness 3
}
</style>

And observe the result:


[See on plantUML server]

See also on documentation:

If that can help,
Regards,
Th.

...