Hi,
When doing a Horizontal zoom the zoom rectangle is not working correctly. In previous version the top and bottom of the zoom rectangle was align with the top and the bottom of the chart. In this version the top of the zoom rectangle is align with the top of the chart but the bottom of the rectangle is align with the Y position of the mouse.
Thanks,
David Brillon
Horizontal Zoom problem
Re: Horizontal Zoom problem
Hi David,
You are right. I've added it to the defect list to be fixed asap (TV52016064).
Thanks for reporting it.
You are right. I've added it to the defect list to be fixed asap (TV52016064).
Thanks for reporting it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Horizontal Zoom problem
SOLUTION:
Modify Chart.pas, procedureTCustomchart.MouseMove, line 3872
Replace:
begin
X1:=xInt;
Y1:=yInt;
end;
With:
begin
X1:= {$IFDEF FMX}Round{$ENDIF}(x); // xInt;
Y1:= {$IFDEF FMX}Round{$ENDIF}(y); // yInt;
end;
Recompile with TeeRecompile.
Modify Chart.pas, procedureTCustomchart.MouseMove, line 3872
Replace:
begin
X1:=xInt;
Y1:=yInt;
end;
With:
begin
X1:= {$IFDEF FMX}Round{$ENDIF}(x); // xInt;
Y1:= {$IFDEF FMX}Round{$ENDIF}(y); // yInt;
end;
Recompile with TeeRecompile.
Re: Horizontal Zoom problem
Hi,
Thanks for the fix suggestion. We've applied it slightly modified. The next maintenance release will include it.
Thanks for the fix suggestion. We've applied it slightly modified. The next maintenance release will include it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Horizontal Zoom problem
The source code has not been update in version 2012.05.120327. The problem is still present
Re: Horizontal Zoom problem
Hi
The latest maintenance release (2012.05.120327) was published on 27/03/2012 and the ticket with number TV52016064 was closed after it, on 18/04/2012. The next maintenance release should include it.
The latest maintenance release (2012.05.120327) was published on 27/03/2012 and the ticket with number TV52016064 was closed after it, on 18/04/2012. The next maintenance release should include it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: Horizontal Zoom problem
That explain it!
Thanks
Thanks