WPF Toolkit Charting and IndependentValueBinding, IndependentValuePath
- by Joel Barsotti
So I'm having a problem with the charting engine from the WPF toolkit.
We haven't moved our data to a proper object model, so the ItemSource is backed with a DataView.
First attempt
<chartingToolkit:ScatterSeries x:Name="TargetSeries" DataPointStyle="{StaticResource TargetStyle}" ItemsSource="{Binding Path=TargetSeriesData}"
…