Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
How to remove 3D background from the chart
posted

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

Parents
  • 37874
    Verified Answer
    posted

    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.

     

Reply Children