While exporting TeeChart to Native Format we are getting following error:
Error on TeeChart Export
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Re: Error on TeeChart Export
Hello Quant,
Can you please prepare a simple example project with which we can reproduce your issue here? We need to see which chart settings may be causing the exception.
Thanks in advance.
Can you please prepare a simple example project with which we can reproduce your issue here? We need to see which chart settings may be causing the exception.
Thanks in advance.
Best Regards,
Narcís Calvet / 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 |
Re: Error on TeeChart Export
This error comes when teechart contains Selector Tool.
Please find simple example project.
Please find simple example project.
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Error on TeeChart Export
Thank you, that was very useful.Quant wrote:Please find simple example project.
This defect is registered as id=1219 and has now been fixed. In the meantime, you can use a substitute derived class with the fix in it:
Code: Select all
public class MySelector : Selector
{
public MySelector(Chart c) : base(c) { }
[DesignerSerializationVisibility(DesignerSerializationVisibility.Hidden)]
public new ChartClickedPart Part { get; set; }
}
Best Regards,
Christopher Ireland / 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 |