Group: Forum Members
Last Active: 3 Years Ago
Posts: 8,
Visits: 27
|
I am looking to make plots like the two shown below ( without the humans ).& nbsp ; Can I use surface mesh to draw a sphere centered around the axis ? 72% of original size (was 696x19) - Click to enlarge 
|
Group: Forum Members
Last Active: Last Week
Posts: 3,055,
Visits: 4,058
|
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
|
Group: Forum Members
Last Active: 3 Years Ago
Posts: 8,
Visits: 27
|
Thanks for the hint .& nbsp ; I got most of it working .& nbsp ; Can I completely remove the walls and the rulers ?& nbsp ; I have made them invisible but the lines are still there . 72% of original size (was 696x19) - Click to enlarge 
|
Group: Forum Members
Last Active: Last Week
Posts: 3,055,
Visits: 4,058
|
Hi Luis , Yes - you can completely hide the axes / walls - the following code shows how to do that : & nbsp ;& nbsp ;& nbsp ; NChart chart = chartControl . Charts[ 0 ]; & nbsp ;& nbsp ;& nbsp ;& nbsp ; foreach ( NChartWall wall in chart . Walls ) & nbsp ;& nbsp ;& nbsp ;& nbsp ;{ & nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ; wall . Visible = false ; & nbsp ;& nbsp ;& nbsp ;& nbsp ;} & nbsp ;& nbsp ;& nbsp ;& nbsp ; foreach ( NAxis axis in chart . Axes ) & nbsp ;& nbsp ;& nbsp ;& nbsp ;{ & nbsp ;& nbsp ;& nbsp ;& nbsp ;& nbsp ; axis . Visible = false ; & nbsp ;& nbsp ;& nbsp ;& nbsp ;} Let us know if you have any questions or meet any problems .
Best Regards, Nevron Support Team
|