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.
Got it! For anyone else:
var ChartSeries = new ObservableCollection();
ChartSeries.Add(new ScatterRenderableSeries3D() { DataSeries = new xyzDataSeries3D<DateTime, double, int>() });
Please login first to submit.