Please see the following image: I've just added some slices with
Code: Select all
procedure TForm1.fillCharts();
const
numItems: Integer = 12;
var
itemNum: Integer;
begin
for itemNum := 0 to Pred(numItems) do begin
Chart1.SeriesList.First().Add(1.0, EmptyStr, clBlack);
Chart2.SeriesList.First().Add(1.0, EmptyStr, clBlack);
end;
end;
Is this intended? Should I file a bug report?