I'm looking for a (MVVM) binding implementation that uses ports.
I have a model as follows
Node has Ports collection
Port has connections
Connection has SourcePort and TargetPort
When the user makes changes in the diagram the model should perform the validation.
I've looked at the "OrganizationalChart" example and I wonder if I could extend that with ports.
//Initializes the DataSourceSettings
diagram.DataSourceSettings = new DataSourceSettings() { DataSource = employees, Id = "EmpId", ParentId = "ParentId" };
I also looked at the MVVM implementation for the WPF sfDiagram, but the syncfusion viewmodels used there seem to be missing in the xamarin version
Regards
Martin