Formatting Series Name in Legend (text wrap)
Posted: 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.
Steema Software - Customer Support Forums
http://216.92.101.67/support/
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.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.
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;
}