Nevron Forum

3D Polar Plot

https://www.nevron.com/Forum/Topic13008.aspx

By Luis Baldeon 1 - Saturday, March 7, 2020

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 - Monday, March 9, 2020

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 1 - Saturday, March 21, 2020

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 - Monday, March 23, 2020

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.