Pre loader

DataSeries 3D Chart

Welcome to the SciChart Forums!

  • Please read our Question Asking Guidelines for how to format a good question
  • Some reputation is required to post answers. Get up-voted to avoid the spam filter!
  • We welcome community answers and upvotes. Every Q&A improves SciChart for everyone

WPF Forums | JavaScript Forums | Android Forums | iOS Forums

0
0

I want to access the values of ScatterSeries3D.DataSeries for example, I want to have something like:

ScatterSeries3D.DataSeries.XValues, ScatterSeries3D.DataSeries.YValues or ScatterSeries3D.DataSeries.ZValues.

Version
6
  • You must to post comments
0
0

Hi Matladi,

This is possible by casting the data series before accessing XValues, YValues, ZValues properties

 var xyzDataSeries = (XyzDataSeries<double,double,double>)scatterSeries.DataSeries;
 var xValues = xyzDataSeries.XValues; // gets xValues
 var yValues = xyzDataSeries.YValues; // gets yValues
 var zValues = xyzDataSeries.ZValues; // gets zValues

Best regards,
Andrew

  • You must to post comments
Showing 1 result
Your Answer

Please first to submit.

Try SciChart Today

Start a trial and discover why we are the choice
of demanding developers worldwide

Start TrialCase Studies