Remove everything, leave the lines

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
MINAS
Newbie
Newbie
Posts: 4
Joined: Tue Sep 04, 2007 12:00 am

Remove everything, leave the lines

Post by MINAS » Mon Feb 04, 2008 8:41 pm

Hi,

i have a polar bar series graph, and i want to remove everything except the lines (the result). I mean i want to remove all the axis, the circles, the background etc

Finally i want to put the result lines of the graph on a photo and have the photo displayed without being disturbed from the circle.

How can this be done ?

Thank you,

Minas

I can send 2 images for example but i do not know how to send them !
[/img]

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

Post by Yeray » Tue Feb 05, 2008 9:31 am

Minas,

I'm not sure to understand what type of chart are you trying to draw. But here there are some examples of how you can deactivate some things:

Code: Select all

  Series1.Active := false;
  Chart1.Legend.Visible := false;
  Chart1.Title.Visible := false;
  Chart1.Axes.Visible := false;
  Chart1.Walls.Visible := false;
  Chart1.Gradient.Visible := false;
You can either post your files at news://www.steema.net/steema.public.attachments newsgroup or at our upload page.
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