MarksTips of first and last points are not displayed

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
OM Partners
Newbie
Newbie
Posts: 8
Joined: Mon Jun 02, 2014 12:00 am

MarksTips of first and last points are not displayed

Post by OM Partners » Fri Aug 01, 2014 10:10 am

Hi,

When a chart doesn't use Pointers, the MarksTips of the first and the last datapoint are not displayed:
ChartNoPointers.png
ChartNoPointers.png (12.08 KiB) Viewed 4318 times
However when Pointers are enabled, all of the MarksTips are also displayed correctly:
ChartWithPointer.png
ChartWithPointer.png (12.81 KiB) Viewed 4321 times
Is there a way to also show all MarksTips, when the Pointers are not visible?

Christopher
Guru
Posts: 1603
Joined: Fri Nov 15, 2002 12:00 am

Re: MarksTips of first and last points are not displayed

Post by Christopher » Mon Aug 04, 2014 9:29 am

Hello!

Yes, I think you should be able to set SoftClip to false, e.g.

Code: Select all

    private void InitializeChart()
    {
      tChart1.Aspect.View3D = false;
      Line line = new Line(tChart1.Chart);
      line.Marks.SoftClip = false;
      line.Marks.Visible = true;
      line.FillSampleValues(3);
    }
Best Regards,
Christopher Ireland / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Instructions - How to post in this forum

Post Reply