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
I'm glad I could help. If you have any other questions, please feel free to contact me.
now I have chart without the background and major and minor lines
but i want, the x and y axes should be display on the chart
just axes not a major or minor grid line
as only line, not a rectangular axis
please reply soon, my development is in stop without it
If you need any further assistance on the matter please do not hesitate to ask.
Hello pethanin,
The behavior you have described is not supported in 3D chart types. I suggest that you either set a background color or make the major gridlines visible.
If you have any other questions, please feel free to contact me.