Bars over the marks and extrange white lines

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
acastro
Advanced
Posts: 204
Joined: Tue Oct 27, 2009 12:00 am

Bars over the marks and extrange white lines

Post by acastro » Wed May 28, 2014 6:42 am

Here an example to reproduce
http://193.145.251.126/pnp/files/QCzmnB ... ksover.ten

First in the case 1 of the screen shot, the bar is over some marks, I know I can aboid it reordering the series, but there is any property to have always the marks over any serie?

Second, depending on the size of the chart, sometimes apearrs white vertical lines in the marks, two examples are in the screen shot with the numbers 2 and 3. Why?

Thanks
Attachments
markswhite.png
markswhite.png (55.4 KiB) Viewed 4153 times

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

Re: Bars over the marks and extrange white lines

Post by Christopher » Wed May 28, 2014 8:42 am

wakeup wrote:First in the case 1 of the screen shot, the bar is over some marks, I know I can aboid it reordering the series, but there is any property to have always the marks over any serie?

Second, depending on the size of the chart, sometimes apearrs white vertical lines in the marks, two examples are in the screen shot with the numbers 2 and 3. Why?

Thanks
Referring to the code below, the first case could be resolved by Marks.OnTop = true and the second by Marks.Arrow.Visible = false;

Code: Select all

    private void button2_Click(object sender, EventArgs e)
    {
      tChart1.Import.Template.Load(@"D:\tmp\marksover.ten");

      for (int i = 0; i < tChart1.Series.Count; i++)
      {
        tChart1[i].Marks.OnTop = true;
        tChart1[i].Marks.Arrow.Visible = 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

Post Reply