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
Where is TeeChart.WPF.XmlSerializers?
-
- Newbie
- Posts: 2
- Joined: Wed Nov 17, 2010 12:00 am
Re: Where is TeeChart.WPF.XmlSerializers?
Hello Scott,
I couldn't reproduce your problem using next simple code as WPF:
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,
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();
}
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 |