mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-12-02 20:51:11 +01:00
TAChart: Move GetBounds procedure from TBasicChartSeries to TCustomChartSeries
git-svn-id: trunk@39070 -
This commit is contained in:
parent
3cfefe12b0
commit
a41feb139a
@ -78,6 +78,9 @@ type
|
||||
procedure SetParentComponent(AParent: TComponent); override;
|
||||
|
||||
strict protected
|
||||
// Set series bounds in axis coordinates.
|
||||
// Some or all bounds may be left unset, in which case they will be ignored.
|
||||
procedure GetBounds(var ABounds: TDoubleRect); virtual; abstract;
|
||||
function GetIndex: Integer; override;
|
||||
function LegendTextSingle: String;
|
||||
function LegendTextStyle(AStyle: TChartStyle): String;
|
||||
|
||||
@ -54,9 +54,6 @@ type
|
||||
procedure AfterAdd; virtual; abstract;
|
||||
procedure AfterDraw; virtual;
|
||||
procedure BeforeDraw; virtual;
|
||||
// Set series bounds in axis coordinates.
|
||||
// Some or all bounds may be left unset, in which case they will be ignored.
|
||||
procedure GetBounds(var ABounds: TDoubleRect); virtual; abstract;
|
||||
procedure GetLegendItemsBasic(AItems: TChartLegendItems); virtual; abstract;
|
||||
function GetShowInLegend: Boolean; virtual; abstract;
|
||||
procedure SetActive(AValue: Boolean); virtual; abstract;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user