BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
Chart.SetBinding(SfChart.SeriesProperty, "DataCollection", BindingMode.OneWay);
private ChartSeriesCollection _dataCollection = new ChartSeriesCollection();
public ChartSeriesCollection DataCollection { get { return _dataCollection; } set { _dataCollection = value; OnPropertyChanged(); } }
System.NullReferenceException: Object reference not set to an instance of an object.
Chart.BindingContext = BindingContext;And now everything works. Views that werent so deep inside containers were binding with no problems and had right binding context.