How to style partition (group, package or card) like rectangle on Activity diagram?

0 votes
asked Sep 15, 2022 in Question / help by The-Lu (64,760 points)

Hello PlantUML team,

  • How to style partition (group, package or card) like rectangle on Activity diagram?

Compare:

Code
<style>
partition {
  LineColor blue
  BackgroundColor lightCyan
  LineThickness 1.0
  ArrowThickness 0.5
  FontName Arial Narrow
  FontColor red
  FontSize 11
  FontStyle regular
}
</style>

:a;
card card_name {
:b;
}
group Group
  :Activity;
end group
floating note: Note on Group

partition Partition {
  :Activity;
}
floating note: Note on Partition

package Package {
  :Activity;
}
floating note: Note on Package 

rectangle Rectangle {
  :Activity;
}
floating note: Note on Rectangle 

card Card {
  :Activity;
}
floating note: Note on Card
end

<style>
card {
  LineColor blue
  BackgroundColor lightCyan
  LineThickness 1.0
  ArrowThickness 0.5
  FontName Arial Narrow
  FontColor red
  FontSize 11
  FontStyle regular
}
</style>

:a;
card card_name {
:b;
}
group Group
  :Activity;
end group
floating note: Note on Group

partition Partition {
  :Activity;
}
floating note: Note on Partition

package Package {
  :Activity;
}
floating note: Note on Package 

rectangle Rectangle {
  :Activity;
}
floating note: Note on Rectangle 

card Card {
  :Activity;
}
floating note: Note on Card
end

<style>
rectangle {
  LineColor blue
  BackgroundColor lightCyan
  LineThickness 1.0
  ArrowThickness 0.5
  FontName Arial Narrow
  FontColor red
  FontSize 11
  FontStyle regular
}
</style>

:a;
card card_name {
:b;
}
group Group
  :Activity;
end group
floating note: Note on Group

partition Partition {
  :Activity;
}
floating note: Note on Partition

package Package {
  :Activity;
}
floating note: Note on Package 

rectangle Rectangle {
  :Activity;
}
floating note: Note on Rectangle 

card Card {
  :Activity;
}
floating note: Note on Card
end

Output

Regards.

related to an answer for: Frame header font style

1 Answer

0 votes
answered Sep 18, 2022 by plantuml (295,000 points)
selected Sep 19, 2022 by The-Lu
 
Best answer
Thanks for the feedback: this should be fixed with last snapshot and on the online server.

Thanks again for your tests!
...