version 4 question (yes 4!)

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
MainRoads
Newbie
Newbie
Posts: 3
Joined: Tue Oct 10, 2006 12:00 am

version 4 question (yes 4!)

Post by MainRoads » Thu Jun 04, 2009 12:50 am

Hi All
here at work we have an old version 4 system,
One of the graphs the system creates is a bunch of circles at x-y locations
all very simple stuff

however when they get too close the labels attached to the circles overlap other circles etc and you cannot see what is behind the label

The question is - how can i make the label associated with the circle itself transparent so that if they DO overlap then we can see what is under the text ?
cheers

Bob

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

Post by Yeray » Thu Jun 04, 2009 8:09 am

Hi Bob,

You could try if you can use transparency in v4. In v8 this works fine:

Code: Select all

Series1.Marks.Transparency := 50;
Or also you could try hiding the mark square completely:

Code: Select all

Series1.Marks.Transparent := true;
Or finally you could try moving your marks manually using OnAfterDraw event like in this thread
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

MainRoads
Newbie
Newbie
Posts: 3
Joined: Tue Oct 10, 2006 12:00 am

Post by MainRoads » Mon Jun 08, 2009 11:49 pm

thanks - theres no Transparency option or I dont seem to be able to find it.

- darn - and the transparent = true option doesnt seem to make any difference at all.


Oh well such is life-


Bob

Post Reply