Legend symbol pen doesn't work

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Adrian
Newbie
Newbie
Posts: 5
Joined: Tue Dec 11, 2012 12:00 am

Legend symbol pen doesn't work

Post by Adrian » Thu May 16, 2013 7:08 am

It appears that the legend symbol pen doesn't work. I don't think the shadow pen works either.
Using the TccChart for .Net Examples application
go to: Welcome !\Chart styles\Standard\Bar

Click Edit button to bring up the Teechart Editor.

Goto Legend --> Symbols and click Border... Change any of the attributes and nothing happens... same with Shadow.

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

Re: Legend symbol pen doesn't work

Post by Sandra » Thu May 16, 2013 2:36 pm

Hello Adrian,
It appears that the legend symbol pen doesn't work...
We have found a problem in Default Border checkbox, that doesn't allow change the Pen of Legend symbol in the editor. We have added this problem in bug list repot with number [TF02016573] and I inform you it is already fixed for next maintenance release of TeeChartFor.Net. On the other hand, you must know that is possible change the pen of legend Symbol, working in run time as do in next lines of code and I suggest you at the moment use this, as a workaround:

Code: Select all

        private void InitializeChart()
        {
            tChart1.Aspect.View3D = false;
            Steema.TeeChart.Styles.Points points = new Steema.TeeChart.Styles.Points(tChart1.Chart);
            points.FillSampleValues(5);
            tChart1.Legend.Symbol.DefaultPen = false; 

        }
Same with Shadow.
This is a different bug that isn't related with the previous defect. We have added it in bug list report with number [TF02016574] and we ill try to fix it to upcoming versions of TeeChartFor.Net.

Thanks,
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