Page 1 of 1

Formatting Series Name in Legend (text wrap)

Posted: Wed Apr 28, 2004 3:37 pm
by 8123840
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.

Posted: Thu Apr 29, 2004 9:04 am
by Chris
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;			
}