Hi,
When a chart doesn't use Pointers, the MarksTips of the first and the last datapoint are not displayed:
However when Pointers are enabled, all of the MarksTips are also displayed correctly:
Is there a way to also show all MarksTips, when the Pointers are not visible?
MarksTips of first and last points are not displayed
-
- Newbie
- Posts: 8
- Joined: Mon Jun 02, 2014 12:00 am
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: MarksTips of first and last points are not displayed
Hello!
Yes, I think you should be able to set SoftClip to false, e.g.
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 |