Hello,
I am using this diagram control to show org chart , it works quite nice, this is the sample i am using.
ASP.NET Core Diagram Overview Panel Example - Syncfusion Demos
Now what i want is ability to filter by parent node
here is my cshtml code
<ejs-diagram id="diagram" width="100%" height="100%" setNodeTemplate="@ViewBag.setNodeTemplate" getNodeDefaults="@ViewBag.getNodeDefaults" getConnectorDefaults="@ViewBag.getConnectorDefaults" created="Test.organisationalChart.diagramCreated">
<e-diagram-datasourcesettings id="EMPLOYEE_ID" parentId="SUPERVISOR_ID" dataSource="new DataManager(){ Data = (List<Fishawack.SuiteTools.Web.Models.PoC.OrganisationalChartViewModel>)Model}"></e-diagram-datasourcesettings>
<e-diagram-layout type="OrganizationalChart" horizontalSpacing="15" verticalSpacing="50"></e-diagram-layout>
<e-diagram-snapsettings constraints="None"></e-diagram-snapsettings>
<e-diagram-scrollsettings scrollLimit="Diagram" currentZoom="0.75" ></e-diagram-scrollsettings>
</ejs-diagram>
Below is the screen shot how i would like to implemet