Page 1 of 1

Background of the Chart

Posted: Mon Dec 10, 2007 10:59 am
by 13047369
Hi TeeChart Team,

how can we change the background of the chart from now standard grey to white?

Posted: Mon Dec 10, 2007 11:11 am
by narcis
Hi ipasuser,

Try this:

Code: Select all

			tChart1.Panel.Gradient.Visible = false;
			tChart1.Walls.Back.Transparent = true;
			tChart1.BackColor = Color.White;

Posted: Mon Dec 10, 2007 12:15 pm
by 13047369
unfortunately , the property BackColor

Code: Select all

tChart1.BackColor = Color.White;
does not exist.

Posted: Mon Dec 10, 2007 2:15 pm
by narcis
Hi ipasuser,

This exist in TeeChart for .NET v2 and v3. You can try tChart1.Panel.Color instead. If the problem persists please let us know the exact TeeChart version you are using.

Thanks in advance.