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.
Legend symbol pen doesn't work
Re: Legend symbol pen doesn't work
Hello Adrian,
Thanks,
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:It appears that the legend symbol pen doesn't work...
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;
}
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.Same with Shadow.
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 |