jvcllaz: Fix lower end of TJvChart running away when the XStartOffset is changed.

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@7181 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
wp_xxyyzz
2019-11-10 22:22:11 +00:00
parent 2b16ccc6bf
commit 4f3966db81
2 changed files with 8 additions and 6 deletions

View File

@ -89,7 +89,8 @@ located at http://jvcl.delphi-jedi.org
To do:
- Drawing of legend at right (clChartLegendRight) not implemented
- Print-out used screen coordinates
- Printing uses screen coordinates.
- Update to changes made in the object inspector.
-----------------------------------------------------------------------------}
// $Id$
@ -2370,6 +2371,7 @@ begin
if FYStartOffset <> Offset then
begin
FYStartOffset := Offset;
if Assigned(FOwner) then FOwner.CalcYEnd;
NotifyOptionsChange;
end;
end;