https://imgur.com/a/5lucFPX
I mean something like this. Linked representation of tree. I know how to form a tree but I don't know how to form a linked list in plantuml. I have never seen it.
(--------)
@startuml<style>arrow { FontColor transparent; FontName: Sans Serif; FontSize:: 14; FontStyle Bold LineColor red LineThickness: 2;}component { BackgroundColor: #aqua/white; 'DiagonalCorner: 5; FontColor: Black; FontName: Sans Serif; FontSize: 14; FontStyle: Bold; HorizontalAlignment: left; LineColor: orange; LineThickness: 5; 'minimumwidth:100; RoundCorner:25; 'Shadowing: 3.0; Shadowing: 5; }</style>component [root]component [A] As Acomponent [B] As Bcomponent [C] As Ccomponent [D] As Dcomponent [E] As E
root ==> A : .A ==> B:.A ==> C:.C ==> D:.C ==> E:.@enduml
Is this good enough?
Hi all,
Here is another proposal, using simply mindmap, as:
@startmindmap top to bottom direction * root ** A *** B *** C **** D **** E @endmindmap
Enjoy,Regards,Th.
Hello K,
From your image input, here is another solution using JSON, as:
@startjson { "root": [[0, "B", 0], "A", [[0, "D", 0], "C", [0, "E", 0]]] } @endjson