Where is TeeChart.WPF.XmlSerializers?

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
spletcher1
Newbie
Newbie
Posts: 2
Joined: Wed Nov 17, 2010 12:00 am

Where is TeeChart.WPF.XmlSerializers?

Post by spletcher1 » Sat Aug 20, 2011 12:38 pm

Hi,
When I try to clone a chart

theSecondaryChart.Chart = (Steema.TeeChart.WPF.Chart)thePrimaryChart.Chart.Clone();

I receive the following exception, but I can't find the TeeChart.WPF.XmlSerializers.dll.

Thrown: "Could not load file or assembly 'TeeChart.WPF.XmlSerializers, Version=4.1.2011.7283, Culture=neutral, PublicKeyToken=98e8c3f289a4e286' or one of its dependencies. The system cannot find the file specified." (System.IO.FileNotFoundException) Exception Message = "Could not load file or assembly 'TeeChart.WPF.XmlSerializers, Version=4.1.2011.7283, Culture=neutral, PublicKeyToken=98e8c3f289a4e286' or one of its dependencies. The system cannot find the file specified.", Exception Type = "System.IO.FileNotFoundException"

I have downloaded the latest release, and I am using this in WPF.

Thanks,
Scott

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

Re: Where is TeeChart.WPF.XmlSerializers?

Post by Sandra » Tue Aug 23, 2011 1:51 pm

Hello Scott,

I couldn't reproduce your problem using next simple code as WPF:

Code: Select all

        Steema.TeeChart.WPF.TChart tChart2;
        private void InitializeChart()
        {
            tChart2 = new TChart();
           tChart2.Chart = (Steema.TeeChart.WPF.Chart)tChart1.Chart.Clone();
       }
Can you please, check if your problem appears using previous code? And also, please, send us a simple project that we can reproduce your problem here?

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