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
Disabling 3D on TChart pocket PC
Re: Disabling 3D on TChart pocket PC
Hello Anders,
To disable 3D effects you must set to false the property Aspect.view3D as do in next line of code:
I hope will help.
Thanks,
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;
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |
Re: Disabling 3D on TChart pocket PC
Thank you for this. It was the ptoperty .Aspect I didnt know.
It works.
It works.