Page 1 of 1

TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?

Posted: Thu Nov 03, 2011 11:45 am
by 10049140
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!

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

Posted: Thu Nov 03, 2011 2:20 pm
by yeray
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.

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

Posted: Thu Nov 03, 2011 3:10 pm
by 10049140
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.