Home › Forums › WinForms controls › Xceed Chart for WinForms › 2D chart to 3D chart and viceversa
Hi
I want in code to change the display of the chart from 2D to 3D (and viceversa) how it can be done?
Thanks Nadav
Imported from legacy forums. Posted by nadav (had 2105 views)
Use the RenderDevice property.
e.i.:
chartControl1.Settings.RenderDevice = RenderDevice.GDI; //for 2D or RenderDevice.OpenGL for 3D
Imported from legacy forums. Posted by André (had 2863 views)