Error on TeeChart Export

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Quant
Advanced
Posts: 142
Joined: Tue Dec 30, 2014 12:00 am

Error on TeeChart Export

Post by Quant » Tue Jul 07, 2015 6:30 am

While exporting TeeChart to Native Format we are getting following error:
Export Serial.png
Export Serial.png (65.73 KiB) Viewed 8004 times

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Error on TeeChart Export

Post by Narcís » Tue Jul 07, 2015 7:17 am

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.
Best Regards,
Narcís Calvet / 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

Quant
Advanced
Posts: 142
Joined: Tue Dec 30, 2014 12:00 am

Re: Error on TeeChart Export

Post by Quant » Tue Jul 07, 2015 8:30 am

This error comes when teechart contains Selector Tool.

Please find simple example project.
TeechartExportImport.zip
(29.32 KiB) Downloaded 765 times

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: Error on TeeChart Export

Post by Christopher » Tue Jul 07, 2015 2:00 pm

Quant wrote:Please find simple example project.
Thank you, that was very useful.

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

Post Reply