Is it possible to have a dynamic number of series for a WPF toolkit line chart? Every example I find declares the series manually.
I want to be able to have this type of data:
ObservableCollection<ObservableCollection>ChartPoint>>
When I add or remove ObservableCollections to the main OC, the chart should add or remove series.
I have been successful in adding or removing series in code-behind, but this is not ideal. I end up manually subscribing to change events on the outer OC.