Hello,
I am using the 3D Column chart. I want to remove 3D background of the chart.
or can say I want trasparant background for my chart.
Please, share solution with me
Thank You
Hi pethanin,
I would suggest that you use code, similar to the following:
this.UltraChart1.Axis.X.MajorGridLines.Visible = false;
this.UltraChart1.Axis.Y.MajorGridLines.Visible = false;
this.UltraChart1.Axis.Z.MajorGridLines.Visible = false;
this.UltraChart1.Axis.BackColor = Color.Transparent;
This should make the background of the chart transparent.
Please let me know if you have any other questions.
Hi Nikolay
Thank You, very much
the column chart's back ground is gone
Thanks again
Hi Nikolay,
Thank You very much, it's working