Search found 1 match
- Mon Apr 16, 2012 9:09 am
- Forum: VCL
- Topic: Horizontal Zoom problem
- Replies: 6
- Views: 4408
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.