What property to suppress frame surrounding chart
Posted: Fri Mar 28, 2008 1:11 pm
Using default chart theme a frame is shown around the WebChart.
I am already setting those properties but that mysterious frame remains visible:
I also tried to play with aChart.Border* properties but this does not seems to change anything.
At moment, the only way I found to remove it, was to use the "classic" theme. Is there any other way to remove that 1px grey frame ?
I am already setting those properties but that mysterious frame remains visible:
Code: Select all
aChart.Chart.Aspect.View3D = false;
aChart.Chart.Panel.Bevel.Inner = BevelStyles.None;
aChart.Chart.Panel.Bevel.Outer = BevelStyles.None;
aChart.Chart.Panel.Bevel.Width = 0;
aChart.Chart.Panel.Shadow.Visible = false;
aChart.Chart.Panel.Brush.Gradient.Visible = false;
aChart.Chart.Panel.Color = Color.White;
aChart.Chart.Header.Visible = false;
aChart.Chart.Legend.Visible = false;
aChart.Chart.Walls.Back.Pen.Visible = false;
At moment, the only way I found to remove it, was to use the "classic" theme. Is there any other way to remove that 1px grey frame ?