Page 1 of 1

MarksTips of first and last points are not displayed

Posted: Fri Aug 01, 2014 10:10 am
by 15669377
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 4319 times
However when Pointers are enabled, all of the MarksTips are also displayed correctly:
ChartWithPointer.png
ChartWithPointer.png (12.81 KiB) Viewed 4322 times
Is there a way to also show all MarksTips, when the Pointers are not visible?

Re: MarksTips of first and last points are not displayed

Posted: Mon Aug 04, 2014 9:29 am
by Christopher
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);
    }