Page 1 of 1
Backwards compatability?
Posted: Tue Jun 16, 2009 9:22 am
by 13047253
Hi
I just updated my TeeChart installation from 3.5.3324.17094 to 3.5.3425.20243 and found that it broke a lot of our products!.
In Series class the following signature: public int Add(double x, double? y); has been removed???
What is the correct way of doing the same as the previous signature?
int index = series.Add(x, y);
series.SetNull(index);
Perhaps?
If you are going to take stuff out - please do it in a major release! Not in "bugfix" releases.
Re: Backwards compatability?
Posted: Tue Jun 16, 2009 10:43 am
by 10050769
Hello SorenBendTsen,
In Series class the following signature: public int Add(double x, double? y); has been removed?
We couldn't found in Series class the signature. Please check that is the exactly number of TeeChartFor .NET version is that you found this. Also, you could explain exactly that you can do with this code or if you prefer, could you send us a simple example project we can run "as-is" to reproduce the problem here?
You can either post your files at news://
www.steema.net/steema.public.attachments newsgroup or at our
upload page. Now you can upload attachments allowed with posts too.
Thanks,
Re: Backwards compatability?
Posted: Tue Jun 16, 2009 12:16 pm
by 13047253
Hi Sandara
I looked at it again - the missing signature is:
public int Add(DateTime x, double? y);
This signature is present in 3.5.3324.17094 (Feb, 2009) but not in 3.5.3425.20243 (Current)
Re: Backwards compatability?
Posted: Tue Jun 16, 2009 1:27 pm
by narcis
Hi SorenBendtsen,
I've checked this here and I can see the Add method overload you mention with latest maintenance release available. However, notice that 3.5.3324.17094 corresponds to aVS2008 version while 3.5.3425.20243 corresponds to a VS2003. double? values are not supported in VS2003, they are only supported in .NET Framework 2.0 and above.
Re: Backwards compatability?
Posted: Tue Jun 16, 2009 1:39 pm
by 13047253
Arh - I think the mystery is solved then
- Thank you for your time.
/Soren