0

3D Surface Chart Axes

Anonymous 10 years ago 0
This discussion was imported from CodePlex

gizmodomn wrote at 2013-02-04 13:41:

I am using helix toolkit in my WPF application to show 3D surface charts. The one issue I have is that scales for the axes for the chart are not the same. I can get the data to show, but it is not very useful. Is there some type of scaling for these that I am missing, or is this something that needs to be done manually?

objo wrote at 2013-02-07 20:17:

I guess you are doing something similar to the SurfacePlot example?
You could apply a ScaleTransform3D to your Model3D or Visual3D object, but this will also scale labels and lines.
I think I would try to manually scale the positions of the mesh, and not use transforms!

gizmodomn wrote at 2013-02-14 14:43:

Yes, I am using the SurfacePlot as my example that I'm working from.

That's what I was thinking too. I'll give that a try, thanks!