In the tooltips text, I put serveral lines of text seperated by "\n". By default, the lines are center aligned. How to I left align these lines in the tooltips?
Thanks.
Zongwen
sorry, this isn't possible. you can submit a feature request here: http://devcenter.infragistics.com/protected/requestfeature.aspx
the closest thing i can offer is a function that pads out the lines of your string, so you can get this effect with a monospace font if you do something like this:
theChart.Tooltips.FormatString = this.PadMultiLineString("hello hello hello\nworld!");
{
}
int maxChars = 0;
lines[current] = lines[current].PadRight(maxChars);