Transparency in Area Series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
theyield
Newbie
Newbie
Posts: 16
Joined: Thu Sep 22, 2016 12:00 am

Transparency in Area Series

Post by theyield » Thu Feb 16, 2017 5:21 am

hi,
i am unable to get a proper transparency in my area?
I have tried setting it on the series and on the area and neither works.
if i use a argb color on the series it kinda works but then these lines show up and i cant hide them?
ie. series.Color = Color.FromArgb(58,214,214,214);

using TeeChart.iOS.Unified
4.16.6.20
Attachments
Simulator Screen Shot 16 Feb 2017, 4.10.04 pm.png
Simulator Screen Shot 16 Feb 2017, 4.10.04 pm.png (36.48 KiB) Viewed 10067 times

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Transparency in Area Series

Post by Sandra » Thu Feb 16, 2017 10:50 am

Hello theyield,

I think can helpful for you combine the code below to resolve the problem you're experiencing:

Code: Select all

   
area2.AreaLines.Visible = false;
area2.Opacity = 0;
area2.Transparency = 100;
area2.Color = Color.FromArgb(58, 214, 214, 214);
Hoping this helps you, otherwise don't hesitate to contact us.

Thanks in advance
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

theyield
Newbie
Newbie
Posts: 16
Joined: Thu Sep 22, 2016 12:00 am

Re: Transparency in Area Series

Post by theyield » Thu Feb 16, 2017 10:00 pm

Unfortunately this did not help to get rid of the vertical lines. Any other suggestions?

Sandra
Site Admin
Site Admin
Posts: 3132
Joined: Fri Nov 07, 2008 12:00 am

Re: Transparency in Area Series

Post by Sandra » Tue Feb 21, 2017 9:14 am

Hello theyiedl,


I would like inform you, after doing some tests, we have added the problem you're experiniencing in Teechart.Net bugzilla tracker to fix it to upcoming versions. Here's the link: http://bugs.teechart.net/show_bug.cgi?id=1793

Feel free to add your mail to the CC list if the ticket to be automatically notified when an update arrives.

Thanks in advance
Best Regards,
Sandra Pazos / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply