
vs.

Except for the legend showing that it is white, it works fine.
But they have the option of showing any stacked bar in a pie chart--but how show a transparent pie slice?
Code: Select all
procedure TForm1.Button1Click(Sender: TObject);
begin
Series1.ValueColor[0]:=clNone;
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
Series1.AddPie(5, '', clRed);
Series1.AddPie(6, '', clBlue);
Series1.AddPie(7, '', clNone);
Series1.AddPie(8, '', clGreen);
end;
Narcís Calvet / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
![]() ![]() ![]() ![]() ![]() ![]() |
Instructions - How to post in this forum |