Good morning,
Impossible to apply color to the legend.
when I create a single series the color in the legend applies correctly, on the other hand if I create a second series the legend colors are no longer applied.
Example :
is there a setting to apply to have all the colors of the series in the legend ?
Thanks
Teechart legend color series
Re: Teechart legend color series
Hello,
Do you have a simple example project we can run as-is to reproduce the problem here?
This seems to work as expected here:
Do you have a simple example project we can run as-is to reproduce the problem here?
This seems to work as expected here:
Code: Select all
uses Chart, Series;
var Chart1: TChart;
procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
Chart1:=TChart.Create(Self);
with Chart1 do
begin
Parent:=Self;
Align:=alClient;
Color:=clWhite;
Gradient.Visible:=False;
Walls.Back.Color:=clWhite;
Walls.Back.Gradient.Visible:=False;
View3D:=False;
for i:=0 to 1 do
with TBarSeries(AddSeries(TBarSeries)) do
begin
Marks.Hide;
FillSampleValues;
end;
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |