我正在尝试在我的Stringgrid
. 它有 140x140 rowxCol,只有数字。应该在Tchart
X 轴上显示单元格坐标,在 y 轴上显示值。
我正在使用这段代码:
procedure TForm2.Button2Click(Sender: TObject);
var
Count: Integer;
begin
with StringGrid1 do
begin
for Count := 0 to RowCount-1 do
begin
Chart1.Series[0].AddXY(StrToFloat(Cells[0, Count]),
StrToFloat(Cells[1, Count]), '', clTeeColor);
end;
end;
end;
但我不断收到此错误:'' is not a floating point value.