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
Inc operator overloading ...
by
TRon
[
Today
at 09:22:22 pm]
ANN: Native X.509, RSA an...
by
WayneSherman
[
Today
at 09:02:04 pm]
Online Package Manager
by
WayneSherman
[
Today
at 08:54:52 pm]
likely/unlikely — will it...
by
furious programming
[
Today
at 06:58:03 pm]
Fpcupdeluxe
by
fafafooey
[
Today
at 06:22:39 pm]
Stringgrid check only one...
by
Hansvb
[
Today
at 05:21:49 pm]
Telegram bots API Wrapper
by
Renat.Su
[
Today
at 05:18:43 pm]
LAMW 0.8.6.3
by
jmpessoa
[
Today
at 05:10:22 pm]
Writing error when select...
by
Rbart
[
Today
at 04:55:33 pm]
Last page on GridPrinter
by
bobonwhidbey
[
Today
at 04:43:37 pm]
Convertor PNG to TGA
by
BIT
[
Today
at 03:45:34 pm]
Lazarus Release Candidate...
by
Martin_fr
[
Today
at 03:05:56 pm]
BGRABitmap - showcase -
by
circular
[
Today
at 02:27:53 pm]
LAMW - paintshader sample
by
Mongkey
[
Today
at 02:20:44 pm]
Anyone interested in test...
by
ad1mt
[
Today
at 01:37:36 pm]
RayLib 5.0
by
YiannisKam
[
Today
at 12:44:59 pm]
LAMW jcanvas setfont
by
Mongkey
[
Today
at 12:37:37 pm]
Automatize build system
by
TRon
[
Today
at 12:17:04 pm]
eratosthenes sieve homewo...
by
MathMan
[
Today
at 11:51:27 am]
LAMW - spinner set custom...
by
Mongkey
[
Today
at 11:33:11 am]
TButton's missing caption...
by
lagprogramming
[
Today
at 11:09:53 am]
TWSButton descendance
by
lagprogramming
[
Today
at 11:06:40 am]
how to change color of a ...
by
lainz
[
Today
at 10:14:22 am]
Habari STOMP Clients 2023...
by
mjustin
[
Today
at 10:00:25 am]
[SOLVED]fpconnect (from s...
by
arturogr
[
Today
at 09:29:46 am]
« previous
next »
Print
Pages: [
1
]
Author
Topic: Tracking TChart cursor (Read 837 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