Delphi 7 and TChart version 2014Delphi7
I have a 3d TChart with 16 bar series and 16 values. (a 16x16 3d bar chart)
When I move the mouse over the bottom axis I need to know the valueindex of the series the mouse is over.
I want to hide(transparency=75) all other values so only the bars for that index are displayed. (show only that index for all series so displayed is in effect a 1x16 chart)
How can I get the index the mouse is over?
The Series' Clicked(X,Y) function returns -1 if the series isn't under the (X,Y) position (in pixels). If the series is under the (X,Y) position (in pixels), it returns the index of the point under the series.
Here you have a simple example using the OnMouseMove event: