ImageTransparent property
ImageTransparent property
On a ChartBrush object you have a property "ImageTransparent". In Win32 it used to make the image, assigned to a brush transparent. I cannot make this work in .NET. Am I missing something?
Re: ImageTransparent property
Hi UserLS,
I'm not sure to see that. I'm trying to reproduce it with the following code and it seems to work fine:
Could you please modify it or send us a simple example project where we can see what you exactly mean? Thanks in advance.
I'm not sure to see that. I'm trying to reproduce it with the following code and it seems to work fine:
Code: Select all
Steema.TeeChart.Styles.Bar bar1;
private void InitializeChart()
{
chartController1.Chart = tChart1;
Steema.TeeChart.Themes.BlackIsBackTheme blacktheme = new Steema.TeeChart.Themes.BlackIsBackTheme(tChart1.Chart);
Steema.TeeChart.Themes.TeeChartTheme teecharttheme = new Steema.TeeChart.Themes.TeeChartTheme(tChart1.Chart);
blacktheme.Apply();
bar1 = new Steema.TeeChart.Styles.Bar(tChart1.Chart);
bar1.FillSampleValues(6);
tChart1.Draw();
Image b = tChart1.Bitmap;
bar1.Brush.Image = b;
teecharttheme.Apply();
}
private void button1_Click(object sender, EventArgs e)
{
bar1.Brush.ImageTransparent = true;
}
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: ImageTransparent property
Well, I am not sure about the code... I am just trying to get it work using you chart editor... There is a checkbox to make the image transparent and it does nothing! I cannot expect my users to write code to make anything work! The editor should do it.
Re: ImageTransparent property
Hello UserLs,
Please you could say Where can we find the checkbox? because we do not know exactly what checkBox Transparent you are referring
Thanks,
Please you could say Where can we find the checkbox? because we do not know exactly what checkBox Transparent you are referring
Thanks,
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |