Page 1 of 1

Customizing TeeChart Background.

Posted: Wed Jan 28, 2009 4:27 am
by 14049736
Hi,
Is it possible to customize the background color of teechart (not the available TChart theme support).I am using teechart for wpf.

Thanks,
Vijay.

Posted: Wed Jan 28, 2009 9:23 am
by narcis
Hi Vijay,

Yes, you can do something like this:

Code: Select all

			tChart1.Panel.Gradient.Visible = false;
			tChart1.Panel.Color = Color.Red;
			tChart1.Walls.Back.Visible = false;

Posted: Thu Jan 29, 2009 5:07 am
by 14049736
Thank you :)