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
Bars over the marks and extrange white lines
Bars over the marks and extrange white lines
- Attachments
-
- markswhite.png (55.4 KiB) Viewed 4150 times
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Bars over the marks and extrange white lines
Referring to the code below, the first case could be resolved by Marks.OnTop = true and the second by Marks.Arrow.Visible = false;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
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 |