Hi !
Well I don´t know who need white as autocolor for generated (Fast) Seires !?
Is there a way to prohibit the TChart engine using white as a automatic color?
How to prevent creating white series?
How to prevent creating white series?
Greetz Dominik
http://www.logview.info
http://www.logview.info
Hi Dominik,
what do you mean with (Fast) series ?
In case you refer to how to customize the predefined colors for created Series, you can modify the colorpalette array manually using similar code to the following :
what do you mean with (Fast) series ?
In case you refer to how to customize the predefined colors for created Series, you can modify the colorpalette array manually using similar code to the following :
Code: Select all
procedure TForm1.FormCreate(Sender: TObject);
var
t:integer;
begin
SetLength(Chart1.ColorPalette,Length(RainbowPalette));
for t:=0 to Length(RainbowPalette)-1 do
Chart1.ColorPalette[t]:=RainbowPalette[t];
end;
Pep Jorge
http://support.steema.com
http://support.steema.com
Hi Pep,
Thx for that information.
Thx for that information.
I mean TFastLineSeries. Sorry for the wrong wording. [/code]what do you mean with (Fast) series ?
Greetz Dominik
http://www.logview.info
http://www.logview.info