|
Group: Forum Members
Posts: 9,
Visits: 23
|
Thanks for the prompt response.
nChartControl1.BackgroundStyle.FrameStyle.Visible = false; Did not work to remove the border of the 3d chart. It changes the style of the border, but it was still there. For example, if I set the chart background to black, and set the window background to black, I still end up with a white line border along two sides of the control. chartnChartControl1.Charts[0].BackgroundFillStyle = new NColorFillStyle(System.Drawing.Color.Black); this.Background = System.Windows.Media.Brushes.Black; // In my tests 'this' was a WPF user control chartnChartControl1.BackgroundStyle.FrameStyle.Visible = false;
It does look like it worked to remove the border from the 2d vector chart.
For setting the background black, I am referring to the area the vectors are being drawn on. I believe that is the plot. Neither of the calls worked to change the background color. Both affected only the area of the chart outside of the area the vectors are being drawn on.
|