Page 1 of 1

Mouse wheel scroll - a bug?

Posted: Thu Jul 08, 2004 4:05 am
by 9082888
Hi,

Is this a bug or am I forgetting to set something else here?
Even if I set the chart scroll to none, I am still able to vertically scroll the chart through the mouse wheel. I even tried it through code (Tchart.Scroll.Enable = pmNone), but still the chart scrolls vertically through the mouse wheel.

Thanks,

Nina

Posted: Thu Jul 08, 2004 8:43 am
by Pep
Hi Nina,

it's not a bug. You must set :
TChart1.Environment.MouseWheelScroll = False

Posted: Thu Jul 08, 2004 9:23 am
by 9082888
Hi,

Thanks very much for the help. :)

Nina

Not working for me

Posted: Tue Sep 28, 2004 4:43 pm
by 9523643
Hi,

I'm having a similar problem, I've added

With TChart1
.Scroll.Enable = pmNone
.Environment.MouseWheelScroll = False
End With

and am still able to scroll using the mouse wheel.

I'm using Tchart 7, ActiveX

Any suggestions greatly appreciated.

Thanks

Rich

Posted: Tue Sep 28, 2004 10:49 pm
by Pep
Hi Rich,

I cannot reproduce the problem here with the following code :

Code: Select all

With tChart1
  .AddSeries scLine
  .Series(0).FillSampleValues(10)
  .Environment.MouseWheelScroll = false
end with
Could you please post an example into the steema.public.attachments newsgroup with which I can reproduce the problem here ?