Zoom and Pan

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
kmanuele
Newbie
Newbie
Posts: 11
Joined: Thu Sep 25, 2014 12:00 am

Zoom and Pan

Post by kmanuele » Thu Oct 02, 2014 8:41 pm

XE3 Builder, VCL 2014

This has not been a good upgrade from VCL 2012. New problems:

Panning (via right mouse button) draws outside of the panel margins --- no clipping is happening.

Zoom has similar problem. Draws the zoomed area way outside the axes limits, though the axes limits scale correctly.

I get random access violations in msvcrt.dll during zoom, pan, or form resize ---- not sure which.

Note that I have GDI+ enabled.

Kevin

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

Re: Zoom and Pan

Post by Yeray » Fri Oct 03, 2014 11:07 am

Hello Kevin,
kmanuele wrote:Panning (via right mouse button) draws outside of the panel margins --- no clipping is happening.

Zoom has similar problem. Draws the zoomed area way outside the axes limits, though the axes limits scale correctly.
It doesn't happen to me here.
Can you please arrange a simple example project we can run as-is to reproduce the problem here?
Worth to mention here Chart1.ClipPoints is true by default, but you could forcing it to see if it changes anything:

Code: Select all

Chart1.ClipPoints:=true;

kmanuele wrote:I get random access violations in msvcrt.dll during zoom, pan, or form resize ---- not sure which.
Can you please arrange a simple example project we can run as-is to reproduce the problem here?
kmanuele wrote:Note that I have GDI+ enabled.
Did you have GDI+ enabled when using TeeChart v2012?
And what build, 2012.05, 2012.06 or 2012.07?
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

kmanuele
Newbie
Newbie
Posts: 11
Joined: Thu Sep 25, 2014 12:00 am

Re: Zoom and Pan

Post by kmanuele » Fri Oct 03, 2014 4:28 pm

I wasn't aware of the ClipPoints option, and I must have set it false unintentionally in the designer.

Thanks for the suggestion.

Will try to reproduce msvcrt.dll access violations.

I did not have GDI+ enabled in VCL 2012
VCL 2012 was Build 2012.07.121105

Thanks

Kevin

Post Reply