Hi.
In the my Boxplot the outliers (shown as points) are colored by the chart itself and not by me. Does the coloring have a meaning?
Can I set the outliers color to colors of my choice? if yes, How?
BR
emwamin
Color of outliers in Boxplot
Re: Color of outliers in Boxplot
Hi emwamin,
The color of the outliers is taken from the series' color. By default, when a series is created, it takes the next color in the Opera Palette. That's why the outliers have these colors set, but you can change them as you want:
The color of the outliers is taken from the series' color. By default, when a series is created, it takes the next color in the Opera Palette. That's why the outliers have these colors set, but you can change them as you want:
Code: Select all
uses TeeBoxPlot;
procedure TForm1.FormCreate(Sender: TObject);
var i: Integer;
begin
Chart1.View3D:=false;
for i:=0 to 3 do
with Chart1.AddSeries(TBoxSeries) as TBoxSeries do
begin
FillSampleValues();
Position:=i;
Box.Color:=clGreen;
Color:=clRed;
end;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |