Profile Picture

3D Polar Plot

Posted By Luis Baldeon 4 Years Ago
Author
Message
Luis Baldeon
Posted 4 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)

Group: Forum Members
Last Active: 2 Years Ago
Posts: 8, Visits: 27
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


Nevron Support
Posted 4 Years Ago
View Quick Profile
Supreme Being

Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 3,039, Visits: 3,746
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.

Best Regards,
Nevron Support Team



Luis Baldeon
Posted 4 Years Ago
View Quick Profile
Forum Newbie

Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)Forum Newbie (7 reputation)

Group: Forum Members
Last Active: 2 Years Ago
Posts: 8, Visits: 27
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



Nevron Support
This post has been flagged as an answer
Posted 4 Years Ago
View Quick Profile
Supreme Being

Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)Supreme Being (4,329 reputation)

Group: Forum Members
Last Active: Last Year
Posts: 3,039, Visits: 3,746
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.

Best Regards,
Nevron Support Team





Similar Topics


Reading This Topic