Lazarus
Home
Help
TinyPortal
Search
Login
Register
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
TAChart
(Moderator:
Ask
) »
[solved] TAChart right Axis range not right?
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
GIT
Mailing List
Other languages
Foundation
Website
Useful Wiki Links
Project Roadmap
Getting the Source
Screenshots
How to use the forum
Forum Rules
About donations (wiki)
Bookstore
Computer Math and Games in Pascal
(preview)
Lazarus Handbook
Search
Advanced search
Recent
Problem with drawing orde...
by
wp
[
Today
at 01:09:06 am]
Any way to "embed" Window...
by
jamie
[
Today
at 12:55:37 am]
CryptoLib4Pascal
by
Xor-el
[
Today
at 12:39:35 am]
GTK3 : Icons have borders...
by
Schmitty2005
[March 13, 2026, 11:31:58 pm]
Pocketbase
by
steve612
[March 13, 2026, 05:50:42 pm]
CONCAT formula
by
veb86
[March 13, 2026, 05:20:42 pm]
Hello! Anything new?
by
LeP
[March 13, 2026, 03:07:25 pm]
DataPort StopBits and Flo...
by
Thaddy
[March 13, 2026, 02:14:16 pm]
TChart: Wrong default val...
by
wp
[March 13, 2026, 02:03:58 pm]
Lazarus Bugfix Release 4....
by
JuhaManninen
[March 13, 2026, 10:05:03 am]
88 year D. Knuth changes ...
by
Thaddy
[March 13, 2026, 07:31:38 am]
could Ardour's YTK be use...
by
dbannon
[March 13, 2026, 05:20:21 am]
interface and GUID someth...
by
egsuh
[March 13, 2026, 03:31:00 am]
CADSys4 3D.
by
maurog
[March 13, 2026, 01:00:05 am]
Questions about TFuncSeri...
by
wp
[March 13, 2026, 12:36:23 am]
UOS - pre-compiled librar...
by
Fred vS
[March 13, 2026, 12:34:06 am]
Pipewire API
by
Fred vS
[March 12, 2026, 10:11:02 pm]
TSplitter color property ...
by
valdir.marcos
[March 12, 2026, 09:20:11 pm]
ShortStrings vs long stri...
by
valdir.marcos
[March 12, 2026, 08:55:02 pm]
LazPaint (alpha-blending,...
by
CM630
[March 12, 2026, 08:38:30 pm]
Z80 ZX Spectrum and Syste...
by
d2010
[March 12, 2026, 07:58:28 pm]
Qt6/Wayland clipboard: pa...
by
valdir.marcos
[March 12, 2026, 06:27:22 pm]
[ANN] PasBuild 1.5.0 rele...
by
valdir.marcos
[March 12, 2026, 06:19:54 pm]
Synchronizing Lazarus pro...
by
valdir.marcos
[March 12, 2026, 05:46:58 pm]
class not found
by
SA.Blackmon
[March 12, 2026, 05:27:32 pm]
« previous
next »
Print
Pages: [
1
]
Author
Topic: [solved] TAChart right Axis range not right? (Read 2187 times)
yyouchen
Newbie
Posts: 2
[solved] TAChart right Axis range not right?
«
on:
February 11, 2023, 02:16:04 am »
The right axis display value is equal to the left axis value multiplied by the right axis value
How can i fix it?
«
Last Edit: February 12, 2023, 01:10:22 pm by yyouchen
»
Logged
wp
Hero Member
Posts: 13418
Re: TAChart right Axis range not right?
«
Reply #1 on:
February 11, 2023, 11:21:19 am »
The AutoScaleAxisTransform does not work properly when no series is assigned to the axis associated with this transformation. In your example the left axis is not assigned to any series. Change the AxisIndexY of the first lineseries in each chart from -1 (no axis) to 0 (index of left axis).
Code: Pascal
[Select]
[+]
[-]
Chart1LineSeries1
.
AxisIndexY
:
=
0
;
Chart1LineSeries2
.
AxisIndexY
:
=
2
;
// (already assigned in OI, just repeating)
Chart2LineSeries1
.
AxisIndexY
:
=
0
;
Chart2LineSeries2
.
AxisIndexY
:
=
2
;
// (already assigned in OI, just repeating)
«
Last Edit: February 11, 2023, 11:27:42 am by wp
»
Logged
yyouchen
Newbie
Posts: 2
Re: [solved] TAChart right Axis range not right?
«
Reply #2 on:
February 12, 2023, 01:10:44 pm »
THANK YOU WP
Logged
Print
Pages: [
1
]
« previous
next »
Lazarus
»
Forum
»
Programming
»
Graphics and Multimedia
»
TAChart
(Moderator:
Ask
) »
[solved] TAChart right Axis range not right?
TinyPortal
© 2005-2018