Page 1 of 1

Disabling 3D on TChart pocket PC

Posted: Mon Jun 25, 2012 10:57 am
by 15661772
Hello

I'm creating a chart on a "smart device" WinCE project (C#). Here it's necessary manually to create the charts / series etc.
I have trouble to disable the 3D effect.

Executing
m_Chart.Walls.View3D = false;
doesn't work. The chart still comes out as 3D

Any suggestions?

Anders

Re: Disabling 3D on TChart pocket PC

Posted: Tue Jun 26, 2012 2:28 pm
by 10050769
Hello Anders,

To disable 3D effects you must set to false the property Aspect.view3D as do in next line of code:

Code: Select all

tChart1.Aspect.view3D= false;
I hope will help.

Thanks,

Re: Disabling 3D on TChart pocket PC

Posted: Wed Jun 27, 2012 5:28 am
by 15661772
Thank you for this. It was the ptoperty .Aspect I didnt know.
It works. :D