Hello ,
I have a most probably easy to answer question.
For a certain purpose I need just the drawing of the (red) Series/Line, without any (black) Box/Lines around it.
How can I get rid of the black rectangle (or the individual lines, top, bottom, left and right) ?
Thanks and best regards
Just draw the series without "Box/Lines" around it
Re: Just draw the series without "Box/Lines" around it
Hello,
You can hide Legend, Title, Walls and Axes. Ie:
You can hide Legend, Title, Walls and Axes. Ie:
Code: Select all
uses Series;
procedure TForm1.FormCreate(Sender: TObject);
begin
Chart1.View3D:=False;
Chart1.Legend.Visible:=False;
Chart1.Title.Visible:=False;
Chart1.Walls.Visible:=False;
Chart1.Axes.Visible:=False;
Chart1.Gradient.Visible:=False;
Chart1.Color:=clWhite;
Chart1.AddSeries(TLineSeries).FillSampleValues;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |