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
60
Noobie UltraChart Questions
posted

Hi,

I'm new to the Infragistics products and have three questions regarding the UltraChart component:

  1. How do I limit the amount of padding/white space between the actual chart and the edges of the actual image?
  2. How can I make the background of the UltraChart component transparent?
  3. And lastly, how do I set the image type to be a png?

Any help is appreciated.

Parents
  • 17605
    posted

    1). this.UltraChart1.Axis.Y.Extent = 100;

    this.UltraChart1.Axis.X.Extent = 100;

    2). this.UltraChart1.BackColor = Color.Transparent;

     

    this.UltraChart1.Axis.BackColor = Color.Transparent;

    3). this.UltraChart1.DeploymentScenario.ImageType = ImageFormat.Png;

    Just to add that IE 6.0 doesn't support trancparency by default.

    http://support.microsoft.com/kb/294714

Reply Children