How do I get rid of the grey border that is drawn around my chart ?
Check screenshot: http://www.lowrad.net/files/screenshots/border.jpg
Thanks!
/David.
Question about Chart panel border
Hi David,
you can do :
Josep Lluis Jorge
http://support.steema.com
you can do :
Code: Select all
WebChart1.Chart.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
WebChart1.Chart.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
http://support.steema.com
Still no change
It still looks the same. I've added this code:
tChart1.Chart.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Chart.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Chart.Panel.Bevel.Width = 0;
tChart1.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Panel.Bevel.Width = 0;
/D.
tChart1.Chart.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Chart.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Chart.Panel.Bevel.Width = 0;
tChart1.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
tChart1.Panel.Bevel.Width = 0;
/D.
Hi David,
which code are you using to custimize the WebChart (color, border style,.. ) ?
I can't see any borders just placing a WebChart on the WebForm and using the following code :
Josep Lluis Jorge
http://support.steema.com
which code are you using to custimize the WebChart (color, border style,.. ) ?
I can't see any borders just placing a WebChart on the WebForm and using the following code :
Code: Select all
private void Page_Load(object sender, System.EventArgs e)
{
WebChart1.Chart.Panel.Color = Color.White;
WebChart1.Chart.Series[0].FillSampleValues(10);
WebChart1.Chart.Panel.Bevel.Outer = Steema.TeeChart.Drawing.BevelStyles.None;
WebChart1.Chart.Panel.Bevel.Inner = Steema.TeeChart.Drawing.BevelStyles.None;
}
http://support.steema.com