Hi,
I am using UltraChart in Windows Application. Is there any option to show/hide the Chart Wall and Chart Floor (ie Background)
Thanks & Regards
Maguesh
Please try:
this.ultraChart1.Axis.PE.Fill = Color.Transparent;
Hi
Thanks for your reply.
I tryed this it look transparent. but i rotate the chart it shows the thin layer in the background.
Is there any option to hide the wall only.
thahks & regards
You can try:
this.ultraChart1.Axis.X.Visible = false;
this.ultraChart1.Axis.Y.Visible = false;
this.ultraChart1.Axis.Z.Visible = false;
this.ultraChart1.Axis.Z.MajorGridLines.Visible = false;
Thanks for your reply. Its working fine.