plantuml / plantuml

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

nwdiag : Group line is not visible #1755

Closed jcralbino closed 2 weeks ago

jcralbino commented 2 weeks ago

Describe the bug when using a group in nwdiag the line is not drawn

using this code:

@startuml
<style>
nwdiagDiagram {
  group {
    BackGroundColor yellow
    LineColor red
    LineThickness 2.0
  }
}
</style>
nwdiag {
  network DMZ {
      address = "y.x.x.x/24"
      web01 [address = "y.x.x.1"];
      web02 [address = "y.x.x.2"];
  }

   network Internal {
    web01;
    web02;
    db01 [address = "w.w.w.z", shape = database];
  } 

    group {
    description = "long group label";
    web01;
    web02;
    db01;
  }
}
@enduml

Generates this image: image

The group in yellow is not having a line surrounding it. This is even more imporant if the BackGroundColor is set to white

To Reproduce Steps to reproduce the behavior:

  1. Go to Plantuml online server
  2. upload the code above

Expected behavior the line surrounding the yellow rectangle should be visible

Screenshots If applicable, add screenshots to help explain your problem.

The-Lum commented 2 weeks ago

Hello @jcralbino,

Thanks for the report, but that is already requested.

Duplicate of #1226

The-Lum commented 2 weeks ago

Duplicate of #1226

jcralbino commented 2 weeks ago

thanks for the feedback. i will close this one then.