SciChart® the market leader in Fast WPF Charts, WPF 3D Charts, iOS Chart, Android Chart and JavaScript Chart Components
If I create a UniformGridDataSeries3D:
new UniformGridDataSeries3D<float>(1, 3);
The 3D surface is blank. If x > 1 it draws correctly.
This is basically like a 2D histogram plot.
Before having to provide an example, is this a limitation of using a UniformGridDataSeries3D, and if so, is there a workaround?
SciChart got back to me with the following:
This issue happens because UniformGridDataSeries3D is a Grid. so it
requires minimum 2 values. So a possible workaround could be to have 2
points, but the last one transparent. You can also try using
XyzDataSeries instead.
I can confirm that XyzDataSeries works.
Please login first to submit.