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!
TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?
Re: TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?
Hello
This variable has been moved to a new property at:
This new MouseWheel property is TPanMouseWheel type:
So you can do (if your chart is named Chart1):
Excuse us for the inconvenience.
This variable has been moved to a new property at:
Code: Select all
Chart.Panning.MouseWheel
Code: Select all
TPanMouseWheel=(pmwNormal, pmwInverted, pmwNone);
Code: Select all
Chart1.Panning.MouseWheel:=pmwNormal; //pmwInverted //pmwNone
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: TeeChart Pro V2011 with Delphi XE2 - Chart.TeeUseMouseWheel?
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.
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.