Logarithmic scale bug

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
neurosoft
Newbie
Newbie
Posts: 35
Joined: Thu May 06, 2010 12:00 am

Logarithmic scale bug

Post by neurosoft » Wed May 12, 2010 12:26 pm

In the attachment there are two TChart with logarithmic scale and the same data. First is WPF TChart (ver. 4.0.2010.13053), second WinForms TChart (ver. 2.0.2987.19069).
wpf.png
wpf.png (8.51 KiB) Viewed 10853 times
wf.png
wf.png (4.56 KiB) Viewed 10855 times
You can see: pictures are quite different! Why??

neurosoft
Newbie
Newbie
Posts: 35
Joined: Thu May 06, 2010 12:00 am

Re: Logarithmic scale bug

Post by neurosoft » Wed May 12, 2010 12:43 pm

You can easy check correctness of WPF TChart with logarithmic scale: make TChart with logarithmic Y axis, set MinValue to 100, MaxValue to 1000 and add one point with Y = 316.2 ( it is sqrt (100*1000)). This point must be in the middle of TChart between bottom and top. And it will not be in the middle!

neurosoft
Newbie
Newbie
Posts: 35
Joined: Thu May 06, 2010 12:00 am

Re: Logarithmic scale bug

Post by neurosoft » Fri May 14, 2010 9:29 am

Steema people, please!

Did you check this issue? It's critical because of wrong data presentation! Can you fix it?

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Logarithmic scale bug

Post by Yeray » Fri May 14, 2010 11:02 am

Hi neurosoft,

It seems that the axes' logarithmic property has been broken for some reason with the latest build (v4.0.2010.13052), with WinForms. In WPF it still seems to work fine.
I've added it to the defect list to be fixed asap (TF02014882). Thanks for reporting it.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Logarithmic scale bug

Post by Yeray » Fri Jun 11, 2010 4:40 pm

Hi neurosoft,

We will close the (TF02014882) because both in WinForms and WPF the following code describes a straight line, which we think would be the expected:

Code: Select all

            tChart1.Aspect.View3D = false;
            tChart1.Legend.Visible = false;

            tChart1.Axes.Left.Logarithmic = true;
            tChart1.Axes.Left.SetMinMax(100, 1000);
            tChart1.Axes.Bottom.SetMinMax(0, 20);

            Steema.TeeChart.Styles.Points points1 = new Steema.TeeChart.Styles.Points(tChart1.Chart);
            //Steema.TeeChart.WPF.Styles.Points points1 = new Steema.TeeChart.WPF.Styles.Points(tChart1.Chart);

            for (int i = 0; i < 20; i++)
            {
                points1.Add(i * (1000 - 100) / 20 + 100);
            }
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

neurosoft
Newbie
Newbie
Posts: 35
Joined: Thu May 06, 2010 12:00 am

Re: Logarithmic scale bug

Post by neurosoft » Wed Jun 23, 2010 11:08 am

Hi Yeray!

Logarithmic scale bug is very serious!

I have changed your sample a little to see points from 10 to 1000.

Please see attached pictures

Picture N 1 (WPF TChart Version=4.0.2010.27963, logarithmic scale) is wrong! It's look like Picture N 2 (WPF TChart Version=4.0.2010.27963, linear scale).
Picture N 1 must be look like as Picture 3 (Windows Forms TChart Version=2.0.2987.19069, logarithmic scale)! Picture 4 (Windows Forms TChart Version=2.0.2987.19069, linear scale) is here only to compare with others.

Please fix this bug, it's very serious, because of it we have to use old TChart versions and can't go to using WPF TChart!!
Log.png
Log.png (38.94 KiB) Viewed 10665 times

neurosoft
Newbie
Newbie
Posts: 35
Joined: Thu May 06, 2010 12:00 am

Re: Logarithmic scale bug

Post by neurosoft » Tue Jun 29, 2010 1:23 pm

Hi, Steema people!

Why didn't you response to my cry from the heart? Can you fix this bug with logarithmic axes? Because of this bug it's impossible to use latest TChart!

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Logarithmic scale bug

Post by Yeray » Wed Jun 30, 2010 6:47 am

Hi neurosoft,

We haven't forgotten this. We are investigating it and we'll be back here asap.
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Yeray
Site Admin
Site Admin
Posts: 9612
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Logarithmic scale bug

Post by Yeray » Wed Jun 30, 2010 11:59 am

Hi neurosoft,

We've found the problem and solved it. The fix will be available with the next maintenance release.
In the meanwhile here it is an ugly workaround:
After: tChart1.Axes.Left.Logarithmic = true;
Run: tChart1.Axes.Left.Horizontal = tChart1.Axes.Left.Horizontal;
Best Regards,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

neurosoft
Newbie
Newbie
Posts: 35
Joined: Thu May 06, 2010 12:00 am

Re: Logarithmic scale bug

Post by neurosoft » Fri Jul 02, 2010 9:44 am

Hi Yeray!

It works! Thank you!!

Post Reply