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
can't determine which ove...
by
Madoc
[
Today
at 06:55:08 pm]
likely/unlikely — will it...
by
marcov
[
Today
at 06:49:56 pm]
Writing three interrupts ...
by
pascalbythree
[
Today
at 06:37:57 pm]
Unique Instance Terminate...
by
KodeZwerg
[
Today
at 06:32:40 pm]
Automatize build system
by
TRon
[
Today
at 06:22:36 pm]
Using tabs instead of spa...
by
TRon
[
Today
at 06:18:19 pm]
Possible bug with range c...
by
Чебурашка
[
Today
at 06:11:19 pm]
BGRABitmap - showcase -
by
circular
[
Today
at 05:47:43 pm]
Online Package Manager
by
lainz
[
Today
at 04:49:48 pm]
Compile loongarch64 appli...
by
myisjwj
[
Today
at 04:47:58 pm]
Stringgrid check only one...
by
morknot
[
Today
at 04:15:33 pm]
[SOLVED] Watchlist, order...
by
Hansvb
[
Today
at 02:12:37 pm]
Advance Record operators ...
by
ad1mt
[
Today
at 01:08:55 pm]
TWSButton descendance
by
Martin_fr
[
Today
at 12:58:46 pm]
New version of BGRABitmap
by
circular
[
Today
at 12:05:38 pm]
regex/and
by
Martin_fr
[
Today
at 10:54:49 am]
Interesting work on Unive...
by
MarkMLl
[
Today
at 09:56:59 am]
how to change color of a ...
by
KodeZwerg
[
Today
at 09:27:12 am]
AI cheetah
by
loaded
[
Today
at 09:26:52 am]
[SOLVED] How to stay in t...
by
egsuh
[
Today
at 03:52:10 am]
LCLVLCPlayer causes 'Exte...
by
Mongkey
[
Today
at 02:39:13 am]
inserting text from clipb...
by
Martin_fr
[
Today
at 01:46:40 am]
Chinese input in edit and...
by
myisjwj
[
Today
at 01:28:21 am]
Fpcupdeluxe
by
Tony Stone
[
Today
at 12:20:48 am]
how to debug a CGI from L...
by
Martin_fr
[December 07, 2023, 11:29:31 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Tracking TChart cursor (Read 806 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