This question is locked. New answers and comments are not allowed.
I have a class MyClass that contains an array called MyChartSeries. MyChartSeries contains MyChartData objects that each has a Value and Category property. I have a BarSeries that is binded to MyChartSeries.
MyClass inherits from the default BindableBase class, so every time an element in MyChartSeries is changed, I call MyClass.OnPropertyChanged("MyChartSeries")
However, my bar chart never changes when MyChartSeries is changed. Any ideas why? Thanks in advance
MyClass inherits from the default BindableBase class, so every time an element in MyChartSeries is changed, I call MyClass.OnPropertyChanged("MyChartSeries")
However, my bar chart never changes when MyChartSeries is changed. Any ideas why? Thanks in advance