TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
marder
Advanced
Posts: 115
Joined: Thu May 29, 2008 12:00 am

TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?

Post by marder » Thu Nov 03, 2011 11:45 am

Hi

Just a quick question:
Where has Chart.TeeUseMouseWheel goon in the Delphi XE2 prerelease of TeeChart Pro 2011?

I did not found anything in the Help file ("TeeChart2011.chm").
It has been removed from the "Variables" listing of the "Chart" unit.
When I use the "Search" function of the the help file I get the "old" page as result, telling me that it is still there in the Charts unit, but it isn't

Could you please help me?
Thanks!

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

Re: TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?

Post by Yeray » Thu Nov 03, 2011 2:20 pm

Hello

This variable has been moved to a new property at:

Code: Select all

Chart.Panning.MouseWheel
This new MouseWheel property is TPanMouseWheel type:

Code: Select all

TPanMouseWheel=(pmwNormal, pmwInverted, pmwNone);
So you can do (if your chart is named Chart1):

Code: Select all

Chart1.Panning.MouseWheel:=pmwNormal; //pmwInverted //pmwNone
Excuse us for the inconvenience.
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

marder
Advanced
Posts: 115
Joined: Thu May 29, 2008 12:00 am

Re: TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?

Post by marder » Thu Nov 03, 2011 3:10 pm

Dear Yeray.

Thanks for your fast response!
That works.

You should consider to revise the help file, so that one how is searching for this option will be linked to this new property page.

Best regards.

Post Reply