Hi I have recently upgraded from Infragistics 7.1 to 8.1.
I have noticed that the border on the image generated through 8.1 is visible even though its width is set to 0.
This Is not visible in version 7.1
I have the border set using :
this.mWebChart.Border.Thickness = 0;
Can anyone help me to hide this in 8.1
Thanks
Kevin
Hi Team,
We are also facing the same issue and we are using 8.1. And it is not about viewing image in any imageviewer.
Actually border is coming on our webpage also since image is having border in it.
Please help.
This sounds like a bug, but it didn't happen for me when I tested using version 8.1.20081.1000.
protected void Page_Load(object sender, EventArgs e) { UltraChart ch = new UltraChart(); ch.Data.DataSource = Infragistics.UltraChart.Data.DemoTable.Table(); ch.Data.DataBind(); ch.Border.Thickness = 0; ch.SaveTo(@"C:\test.png", ImageFormat.Png); }
just make sure you view the image in pbrush or something similar, because many image viewers add a 1px black border to all images.