3D Polar Plot


https://www.nevron.com/Forum/Topic13008.aspx
Print Topic | Close Window

By Luis Baldeon - 4 Years Ago
I am looking to make plots like the two shown below (without the humans).  Can I use surface mesh to draw a sphere centered around the axis?
https://www.nevron.com/forum/uploads/images/be9bd79c-9e5c-497a-80bb-6662.png
By Nevron Support - 4 Years Ago
Hi Luis,
Thank you for your interest in Nevron Chart for .NET. You can use the XYZ scatter line series to draw the circles and then use regular mesh surface series. If you meet any problems or have any questions please let us know.
By Luis Baldeon - 4 Years Ago
Thanks for the hint.  I got most of it working.  Can I completely remove the walls and the rulers?  I have made them invisible but the lines are still there.https://www.nevron.com/forum/uploads/images/92d1586c-f483-49cc-ab94-c241.png

By Nevron Support - 4 Years Ago
Hi Luis,

Yes - you can completely hide the axes / walls - the following code shows how to do that:
   NChart chart = chartControl.Charts[0];

    foreach (NChartWall wall in chart.Walls)
    {
      wall.Visible = false;
    }

    foreach (NAxis axis in chart.Axes)
    {
      axis.Visible = false;
    }

Let us know if you have any questions or meet any problems.