In this chart http://193.145.251.126/pnp/files/QCzmnB ... tittle.ten
marks are over the tittle. If I set it clip=true the marks dissapear. There is any propertie to show the marks in this example but not over the title?
Thanks
Marks over the title
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Marks over the title
I'm afraid that link is giving me a "404 Not Found" error. Could you please repost it?wakeup wrote:In this chart http://193.145.251.126/pnp/files/QCzmnB ... tittle.ten
marks are over the tittle. If I set it clip=true the marks dissapear. There is any propertie to show the marks in this example but not over the title?
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 |
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Marks over the title
Okay, thanks. You could try:wakeup wrote:Sorry, here new link
http://193.145.251.126/pnp/files/vYBFjs ... tittle.ten
Code: Select all
private void button1_Click(object sender, EventArgs e)
{
tChart1.Import.Template.Load(@"D:\tmp\markstittle.ten");
tChart1.Axes.Left.MaximumOffset = tChart1[0].Marks.ArrowLength;
}
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 |
Re: Marks over the title
This runs if you know which mark is over the title, but if it is in the second serie you should check the maximum ArrowLength of all the series, but if in the example you hide the marks in the first series, you still have the offset because of the marks of series which are not over the title...
My question is... Is it possible to now programatically which serie has marks over the title? or if any serie is over the title?
Thanks
My question is... Is it possible to now programatically which serie has marks over the title? or if any serie is over the title?
Thanks
-
- Guru
- Posts: 1603
- Joined: Fri Nov 15, 2002 12:00 am
Re: Marks over the title
It is possible, of course, but probably the most practical way to approach this is to set the Axes.Left.MaximumOffset every time a series point is close to the maximum value of the left axis.wakeup wrote:My question is... Is it possible to now programatically which serie has marks over the title? or if any serie is over the title?
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 |