TAChart: Fix a typo. Order properties alphabetically.

git-svn-id: trunk@24510 -
This commit is contained in:
ask 2010-04-08 13:33:30 +00:00
parent e1e2609bb3
commit 357f5eb515
2 changed files with 2 additions and 2 deletions

View File

@ -409,7 +409,7 @@ end;
function TChartSeries.GetGraphPointY(AIndex: Integer): Double;
begin
Result := AxisToGraphX(Source[AIndex]^.Y);
Result := AxisToGraphY(Source[AIndex]^.Y);
end;
procedure TChartSeries.GetMax(out X, Y: Double);

View File

@ -130,8 +130,8 @@ type
procedure Clear;
function Count: Integer;
public
property List: TFPList read FList;
property Items[AIndex: Integer]: TBasicChartSeries read GetItem; default;
property List: TFPList read FList;
end;
{ TChart }