Just draw the series without "Box/Lines" around it

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
X-ray
Newbie
Newbie
Posts: 6
Joined: Thu Jan 12, 2017 12:00 am

Just draw the series without "Box/Lines" around it

Post by X-ray » Tue Nov 21, 2017 12:39 pm

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) ?
ScanUntitled.png
ScanUntitled.png (8.39 KiB) Viewed 5166 times
Thanks and best regards

Yeray
Site Admin
Site Admin
Posts: 9514
Joined: Tue Dec 05, 2006 12:00 am
Location: Girona, Catalonia
Contact:

Re: Just draw the series without "Box/Lines" around it

Post by Yeray » Wed Nov 22, 2017 9:36 am

Hello,

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,
ImageYeray Alonso
Development & Support
Steema Software
Av. Montilivi 33, 17003 Girona, Catalonia (SP)
Image Image Image Image Image Image Please read our Bug Fixing Policy

Post Reply