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
eratosthenes sieve homewo...
by
440bx
[
Today
at 08:49:01 pm]
how to debug a CGI from L...
by
Martin_fr
[
Today
at 08:23:43 pm]
regex/and
by
Martin_fr
[
Today
at 06:47:48 pm]
Lazarus 3.9.9 Variable Wa...
by
Martin_fr
[
Today
at 06:37:27 pm]
BGRABitmap - showcase -
by
dseligo
[
Today
at 06:33:16 pm]
Chinese input in edit and...
by
AlexTP
[
Today
at 06:14:10 pm]
Fpcupdeluxe
by
Gustavo 'Gus' Carreno
[
Today
at 05:58:51 pm]
[SOLVED] SVG thumbnails
by
Pe3s
[
Today
at 05:20:16 pm]
TWSButton descendance
by
zeljko
[
Today
at 05:18:24 pm]
Advance Record operators ...
by
ad1mt
[
Today
at 05:04:43 pm]
Autentication Oracle [wi...
by
CapitaoVirgulinoFerreira
[
Today
at 04:47:08 pm]
Unique Instance Terminate...
by
d7_2_laz
[
Today
at 04:26:01 pm]
[SOLVED] TLabeledEdit.Edi...
by
jipété
[
Today
at 02:08:02 pm]
CORDIC algorithms
by
BlueIcaro
[
Today
at 01:22:51 pm]
[SOLVED] Lazarus png file
by
circular
[
Today
at 12:53:57 pm]
Using tabs instead of spa...
by
Martin_fr
[
Today
at 12:45:40 pm]
Lazarus Release Candidate...
by
dbannon
[
Today
at 12:04:23 pm]
Automatize build system
by
Чебурашка
[
Today
at 12:00:41 pm]
Small Status Bar Demo
by
Handoko
[
Today
at 11:48:02 am]
Anyone interested in test...
by
TRon
[
Today
at 11:43:16 am]
How to "create" a TFont a...
by
Hartmut
[
Today
at 11:40:53 am]
lazarus controlling compi...
by
Thaddy
[
Today
at 08:21:16 am]
Export Stringgrid to an x...
by
majid.ebru
[
Today
at 04:02:17 am]
[SOLVED] How to stay in t...
by
egsuh
[
Today
at 04:00:01 am]
Stimulus Control: a teach...
by
cpicanco
[
Today
at 02:07:11 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Tracking TChart cursor (Read 780 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: 11482
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