Overlapping marks

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
Test Always
Newbie
Newbie
Posts: 16
Joined: Mon Dec 05, 2016 12:00 am

Overlapping marks

Post by Test Always » Wed Aug 30, 2017 9:02 pm

In an application I write, I use marks to explain what the bars stand for, but sometimes, the marks disappear, I guess because there is not enough room for them without overlapping. In the financial services industry I work, it is a big problem not to label everything.

Here is an example:

Image

The mark for the middle bar gets dropped--in this case, there should be little (if any) overlap with the labels on either side. (It should have "Current" and the dollar value on it).

In any case, is there any way to stop the marks from disappearing?

Thank you,

Edward Dressel

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

Re: Overlapping marks

Post by Yeray » Thu Aug 31, 2017 9:22 am

Hello Ed,

You can disable it with Marks.Automatic.Move property:

Code: Select all

  Series1.Marks.Automatic.Move:=False;
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