I am new to angular 9. I want show the mat-cards as parent and child with graph. Below is the data
[
{ "id" : "ajson1", "parent" : "#", "text" : "Simple root node" },
{ "id" : "ajson2", "parent" : "#", "text" : "Root node 2" },
{ "id" : "ajson3", "parent" : "ajson2", "text" : "Child 1" },
{ "id" : "ajson4", "parent" : "ajson2", "text" : "Child 2" },
]
Based on the below picture i have to show the mat-card with graphical view
Is there any npm package available? Or is it possible show like this? i tried with swimlane but i can't.