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
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