SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
I have 2 series of data in my chart like this:
<s3D:SciChart3DSurface.RenderableSeries>
</s3D:SciChart3DSurface.RenderableSeries>
My question is, how can I bind multiple series to the RenderableSeries of the SciChartSurface instead, because that requires an ObservableCollection , which is not the same as the XyzDataSeries3D the series are being bound to.
I am trying to bind from my ViewModel to the DataSeries of a ScatterRenderableSeries3D, but no data is showing.
I am binding in this way:
…
My ViewModel has a property of type ObservableCollection<XyzDataSeries3D<DateTime, double, int>>. I can populate ChartItems, and see the data in it. The property is being notified of change as expected.
If I populate the DataSeries directly from code behind, it works, but not when being bound.
What am I doing wrong?