TPieSeries and TDonutSeries can't have no border
Posted: Thu Jun 26, 2014 7:51 am
The pie and donut series both provide a "No border" template. However, when painting them with GDI+ and anti-alias (which is the default), they still have visible seams where they'd draw their border. Turning anti-alias off brings back memories from 1995 but removes the gaps.
Please see the following image: I've just added some slices with and the charts look like this.
Is this intended? Should I file a bug report?
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?