1) How to remove black boarder of NChartControl:
nChartControl1.BackgroundStyle.FrameStyle.Visible = false;
OR
((NStandardFrameStyle)nChartControl1.BackgroundStyle.FrameStyle).InnerBorderWidth = new NLength(0);
2) How to remove the L shape axis?
chart.Axis(StandardAxis.PrimaryX).Visible = false;
chart.Axis(StandardAxis.PrimaryY).Visible = false;
Best Regards,
Nevron Support Team