TAChart: Use Split function in data point series editor, see also r39600 #b7d4efbbb2

git-svn-id: trunk@40044 -
This commit is contained in:
ask 2013-01-30 03:27:41 +00:00
parent c04513ee75
commit 4b4469364c

View File

@ -115,11 +115,7 @@ begin
end;
end;
for i := 0 to ADataPoints.Count - 1 do
with sgData.Rows[i + 1] do begin
Delimiter := '|';
StrictDelimiter := true;
DelimitedText := '|' + ADataPoints[i];
end;
Split('|' + ADataPoints[i], sgData.Rows[i + 1])
end;
procedure TDataPointsEditorForm.miDeleteRowClick(Sender: TObject);