Polynomial Fitting on Series

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
Chris.CHWU
Newbie
Newbie
Posts: 57
Joined: Wed Jan 30, 2008 12:00 am

Polynomial Fitting on Series

Post by Chris.CHWU » Thu Oct 09, 2008 9:05 am

Greetings,

I tried to apply poly. fitting on my series but got an exception from the red line bellow. Please help me to solve this problem. Thanks a lot.

fastLine1.Function = polyFitting1

Code: Select all

        Dim series As Steema.TeeChart.Styles.Points = _
          TChart1.Series.Add(New Steema.TeeChart.Styles.Points())
        series.Add(0.0000327429511222184, 217.974565416658)
        series.Add(0.0000449872090402736, 113.620689449038)
        series.Add(0.0000707548748640967, 506.886177999488)

        Dim polyFitting1 As New Steema.TeeChart.Functions.PolyFitting
        Dim fastLine1 As New Steema.TeeChart.Styles.FastLine
        fastLine1.DataSource = series
        fastLine1.VertAxis = series.VertAxis
        polyFitting1.PolyDegree = 3
        fastLine1.Function = polyFitting1
        fastLine1.ShowInLegend = True
        TChart1.Series.Add(fastLine1)

        TChart1.Aspect.View3D = False

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

Post by Narcís » Thu Oct 09, 2008 10:32 am

Hi Chris,

Thanks for reporting. I could reproduce the issue here and added it (TF02013440) to the defect list to be fixed for next releases.
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

Chris.CHWU
Newbie
Newbie
Posts: 57
Joined: Wed Jan 30, 2008 12:00 am

Post by Chris.CHWU » Tue Feb 03, 2009 6:00 am

Dear Sirs,

Can you please tell me what the current state of your implementation is?

Thank you.

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

Post by Narcís » Tue Feb 03, 2009 11:01 am

Hi Chris,

We have been investigating the issue here and it seems an expected behaviour as an exception handling was added for TF02011495, which is described here:

http://www.teechart.net/support/viewtop ... tf02011495
http://www.teechart.net/support/viewtop ... tf02011495
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

Post Reply