Color of pie slices
Posted: Mon Apr 11, 2005 10:14 pm
How can I get the color of existing pie slices for a given series?
thanks
Ed Dressel
thanks
Ed Dressel
Steema Software - Customer Support Forums
http://216.92.101.67/support/
Code: Select all
var i : integer;
colors : array of TColor;
begin
SetLength(colors,Series1.Count);
for i:=0 to Series1.Count-1 do
colors[i]:= Series1.ValueColor[i];
end;