Please find the example application to reproduce. If you press button3, to load the "Chart1.ten" file, you can see that some of the marks on the right are not well positionated although they have very similar values.
http://193.145.251.126/pnp/files/OLxLvb ... tMarks.zip
Marks now well positionated
Marks now well positionated
- Attachments
-
- marks.png (26.28 KiB) Viewed 4145 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Marks now well positionated
Here you could try setting the Marks.AutoPostion property to false, e.g.wakeup wrote:Please find the example application to reproduce. If you press button3, to load the "Chart1.ten" file, you can see that some of the marks on the right are not well positionated although they have very similar values.
Code: Select all
private void button3_Click(object sender, EventArgs e)
{
tChart1.Import.Template.Load(@"D:\Downloads\TestMarks\Chart1.ten");// @"C:\example.ten");
for (int i = 0; i < tChart1.Series.Count; i++)
{
tChart1[i].Marks.Clip = false;
tChart1[i].Marks.AutoPosition = false;
}
}
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 |