I have a question about tree component. Is it possible to make my tree component like a table ? Here is what i exactly want:
Here is some snippet from example of documentation:
nodes = [
{
id: 1,
name: "Санхүү",
children: [{ id: 2, name: "child1" }, { id: 3, name: "child2" }]
},
{
id: 4,
name: "Санхүүгийн бус",
children: [
{ id: 5, name: "Данс нээх харилцах" },
{
id: 6,
name: "Карт захиалах",
children: [{ id: 7, name: "subsub" }]
}
]
}
];