Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
TAChart
(Moderator:
Ask
) »
Tracking TChart cursor
Free Pascal
Website
Downloads
Wiki
Documentation
Bugtracker
Mailing List
Lazarus
Website
Downloads (Laz+FPC)
Packages (OPM)
FAQ
Wiki
Documentation (RTL/FCL/LCL)
Bugtracker
CCR Bugs
IRC channel
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Program crashes on Window...
by
Bart
[
Today
at 10:05:03 pm]
lazarus controlling compi...
by
PascalDragon
[
Today
at 09:51:38 pm]
Possible bug with range c...
by
PascalDragon
[
Today
at 09:46:00 pm]
likely/unlikely — will it...
by
PascalDragon
[
Today
at 09:37:19 pm]
Feature announcement: Fun...
by
PascalDragon
[
Today
at 09:26:48 pm]
syncobjs.TEventObject cla...
by
PascalDragon
[
Today
at 09:21:29 pm]
Demo example. How work wi...
by
Renat.Su
[
Today
at 09:16:51 pm]
How to detect if an UTF8-...
by
Martin_fr
[
Today
at 09:10:27 pm]
Stencil and TOpenGLContro...
by
Lulu
[
Today
at 08:57:43 pm]
Inc operator overloading ...
by
jamie
[
Today
at 08:32:12 pm]
SVG thumbnails
by
Pe3s
[
Today
at 08:22:24 pm]
can't determine which ove...
by
ad1mt
[
Today
at 06:34:17 pm]
ANN: Native X.509, RSA an...
by
abouchez
[
Today
at 02:45:57 pm]
Problem with typing Shift...
by
Martin_fr
[
Today
at 01:58:18 pm]
RayLib 5.0
by
YiannisKam
[
Today
at 01:02:58 pm]
BGRA Controls
by
petevick
[
Today
at 12:08:48 pm]
Writing error when select...
by
Martin_fr
[
Today
at 11:49:41 am]
There is no iconv static ...
by
a8265348
[
Today
at 11:25:24 am]
Dynamical creation of obj...
by
maxerist
[
Today
at 11:17:54 am]
BGRABitmap - showcase -
by
circular
[
Today
at 11:09:24 am]
Stringgrid check only one...
by
Hansvb
[
Today
at 10:11:20 am]
BottomAxis Height
by
kapibara
[
Today
at 08:46:39 am]
AI cheetah
by
avra
[
Today
at 05:41:36 am]
LAMW 0.8.6.3
by
jmpessoa
[
Today
at 04:20:59 am]
SELECT - Criar sequencial...
by
CapitaoVirgulinoFerreira
[
Today
at 04:02:01 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Tracking TChart cursor (Read 866 times)
Curt Carpenter
Sr. Member
Posts: 342
Tracking TChart cursor
«
on:
September 20, 2023, 06:07:58 pm »
A minimal example of how to track mouse cursor location on a TChart.
«
Last Edit: September 20, 2023, 06:50:06 pm by Curt Carpenter
»
Logged
wp
Hero Member
Posts: 11485
Re: Tracking TChart cursor
«
Reply #1 on:
September 20, 2023, 07:34:33 pm »
Yes, this works.
An idea for an extension: When you use a TDataPointCrossHairTool rather than a TUserDefinedTool you can utilize the fact that the mouse is caught near the data points and you can read out the exact values of the data points:
Code: Pascal
[Select]
[+]
[-]
procedure
TForm1
.
ChartToolset1DataPointCrosshairTool1Draw
(
ASender
:
TDataPointDrawTool
)
;
var
ser
:
TChartSeries
;
idx
:
Integer
;
begin
if
ASender <>
nil
then
begin
if
ASender
.
Series
<>
nil
then
begin
ser
:
=
ASender
.
Series
as TChartSeries
;
idx
:
=
ASender
.
PointIndex
;
Label3
.
Caption
:
=
'Series "'
+
ser
.
Title
+
'": x = '
+
ser
.
XValue
[
idx
]
.
ToString
+
' y = '
+
ser
.
YValue
[
idx
]
.
ToString
;
exit
;
end
;
Label3
.
Caption
:
=
''
;
end
;
end
;
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
TAChart
(Moderator:
Ask
) »
Tracking TChart cursor
TinyPortal
© 2005-2018