If i create a two line centered chart title where one line is longer than the other the two lines don't center properly, see the example below.
two line chart title not aligned properly
Re: two line chart title not aligned properly
Hello Adrian,
I couldn't reproduce your problem using last version of TeeChart.Net and next code:
Could you check, if previous code works for you? On the other hand, could you tell us what version of TeeChart are you using?
Thanks,
I couldn't reproduce your problem using last version of TeeChart.Net and next code:
Code: Select all
private void InitializeChart()
{
Steema.TeeChart.Styles.Line series1 = new Steema.TeeChart.Styles.Line(tChart1.Chart);
series1.FillSampleValues();
tChart1.Header.Text = "My two lines \n title";
tChart1.Header.TextAlign = StringAlignment.Center;
}
Thanks,
Best Regards,
Sandra Pazos / 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: two line chart title not aligned properly
I've just downloaded the latest release 4.1.2010.11300 and using your Feature demo from that release goto Welcome !\Chart styles\Standard\Bar\Negative stacked. It illustrates the issue.
Thanks.
Thanks.
Re: two line chart title not aligned properly
Hello Captell,
I added your request in wish-list with number [TF02015333] to be considered inclusion it in next versions of TeeChart.Net. At the moment, you can use a solution I suggest previously, that modify alignment in the code.
Thanks,
I added your request in wish-list with number [TF02015333] to be considered inclusion it in next versions of TeeChart.Net. At the moment, you can use a solution I suggest previously, that modify alignment in the code.
Thanks,
Best Regards,
Sandra Pazos / 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: two line chart title not aligned properly
Thanks Sandra,
The problem with having to do it in the code is that my users create the titles using the properties editor.
Adrian.
The problem with having to do it in the code is that my users create the titles using the properties editor.
Adrian.