plantuml / plantuml

Generate diagrams from textual description
https://plantuml.com
Other
9.73k stars 881 forks source link

nwdiag: Allow line border for group #1226

Open The-Lum opened 1 year ago

The-Lum commented 1 year ago

Hello PlantUML team,

This example seems to not works...:

<style>
group {
  LineThickness 5
  LineColor red
}
</style>

Here is a full example:

@startuml
<style>
group {
  BackGroundColor palegreen

  LineThickness 5
  LineColor red
}
</style>

nwdiag {
  network N {
      w1;
      w2;
  }

    group {
    description = "long group label";
    w1;
    w2;
  }
}
@enduml

Especially to flat theme as amiga or other.... :

Thanks for the enhancement, Regards,

jcralbino commented 2 weeks ago

Is this planned to be implemented?