TAChart: Move GetBounds procedure from TBasicChartSeries to TCustomChartSeries

git-svn-id: trunk@39070 -
This commit is contained in:
ask 2012-10-13 15:45:12 +00:00
parent 3cfefe12b0
commit a41feb139a
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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;