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
195
Making an ultraChart completely transparent, except for the data
posted

I have an ultraChart that has three data series.  The chart types are ScatterChart, set on the same chart Area, using the same x-axis and y-axis.  I want to overlay these three series on some specified image(s).

However, no matter what settings I adjust...I CAN NOT make the ultraChart transparent!  I need everything to be transparent, except for the data.  I've tried setting the following:

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

this.ultraChart1.BackColor = Color.Transparent;

Along with every setting inside the chart wizard that I can find to be transparent.

Does anyone have any ideas?

I've attached a sample project so you can see exactly what I've done!

Thanks in advance for any help anyone can give to help me solve this issue.

TransparentChart.zip
Parents
  • 280
    posted

    Hi Amy Quigg

    i m vb.net developer i make transparent the ultrachart please see the code i hope that will be helpful to you

    'TODO: This line of code loads data into the 'AHMADDataSet.person' table. You can move, or remove it, as needed.
    'for background transparent
    Me.UltraChart1.BackColor = Color.Transparent
    Me.UltraChart1.Axis.BackColor = Color.Transparent
    'for xaxix tranparent
    Me.UltraChart1.Axis.X.LineColor = Color.Transparent
    'for y axix transparent
    Me.UltraChart1.Axis.Y.LineColor = Color.Transparent
    'for BackgroundImageStyle nothing
    Me.UltraChart1.BackgroundImageStyle = False

    IF u need more help please contact me at below link

    http://ahmadkhalid44.blogspot.com/

    Regards:

    Ahmad Khalid

    Software Engineer

Reply Children
No Data