Is it possible to create a box in wbs diagram with same style as object diagram in plantuml?

0 votes
asked May 24, 2021 in Question / help by anonymous
In an object diagram(plantuml) code like below, the generated diagram will have an object box with a separation line for header and content inside a box.
@startuml
object firstObject
object "My Second Object" as o2
@enduml
But will it be possible to have same style box in a WBS diagram? Please provide solution.

example wbs:
@startwbs
* Business Process Modelling WBS
** Launch the project
@endwbs

1 Answer

0 votes
answered May 25, 2021 by The-Lu (63,920 points)
edited May 25, 2021 by The-Lu
 
Best answer

Hello A.,

  • Which style could you [change]?

From:

  1. Object
  2. and WBS

Here is an example or a mix (with creole):

@startwbs
* Business Process Modelling WBS\n----\ndata
** Launch the project\n----\ndata
**[#palegreen] header\n----\ncontent inside a box
@endwbs

If that can help,
Regards,
Th.

commented May 25, 2021 by albert (3,520 points)

Mentioned code and image don't correspond, please mention that you used:

**[#palegreen] header\n----\ncontent inside a box
commented May 25, 2021 by The-Lu (63,920 points)
Done, but that is minor...
Thanks
commented May 25, 2021 by albert (3,520 points)
For sure it is minor, but for inexperienced users a bit confusing
commented May 26, 2021 by anonymous
edited May 26, 2021
Thank you very much for the quick reply, this helped me a lot.

And I need one more help if possible. Can someone answer the below questions
1) regardingis there any possibility in WBS syntax for connecting 1st parent box to 3rd level child box. Please check below link for more details:

https://forum.plantuml.net/13774/diagrams-generated-plantuml-additional-connection-directly?show=13774#q13774

2) regarding jlatexmath and batik jars combination for rendering math equations?

https://forum.plantuml.net/13738/specific-plantuml-jlatexmath-rendering-equations-plantuml?show=13738#q13738

Thanks in advance.
commented Jun 28, 2021 by The-Lu (63,920 points)

Hello all,

With:

@startwbs
*:Business Process Modelling WBS
----
data;

**:Launch the project
----
data;

**[#palegreen]:header
----
content inside a box;
@endwbs

Enjoy,
Thank to PlantUML team,

Regards,
Th.

...