Formatting Series Name in Legend (text wrap)

TeeChart for Microsoft Visual Studio .NET, Xamarin Studio (Android, iOS & Forms) & Monodevelop.
Post Reply
chipshot
Newbie
Newbie
Posts: 18
Joined: Fri Feb 13, 2004 5:00 am

Formatting Series Name in Legend (text wrap)

Post by chipshot » Wed Apr 28, 2004 3:37 pm

Is it possible to force a newline or cause a series name to wrap. I need a descriptive series name but dont want it reducing the size of the actual chart.

Christopher
Site Admin
Site Admin
Posts: 1349
Joined: Thu Jan 01, 1970 12:00 am
Location: Riudellots de la Selva, Catalonia
Contact:

Post by Christopher » Thu Apr 29, 2004 9:04 am

Hi --
Is it possible to force a newline or cause a series name to wrap. I need a descriptive series name but dont want it reducing the size of the actual chart.
I'm afraid this functionality is not presently available; I will add it to the wishlist. In the meantime the best I can suggest is that you align your Legend either top or bottom, e.g.

Code: Select all

private void Form1_Load(object sender, System.EventArgs e) {
	points1.FillSampleValues();
	points2.FillSampleValues();

	points1.Title="This is the first of two series in the chart";
	tChart1.Legend.Alignment = Steema.TeeChart.LegendAlignments.Bottom;			
}
Thank you!

Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/

Post Reply