The label with "row break" is not splitted into tw
Posted: Tue Dec 25, 2007 8:42 am
We use labels, which we build using "row break".
For TeeChart Pro v7 ActiveX with Unicode (TeeChart7Activex.exe and TeeChartAX7MultiLangUnicode.exe installed) the label with "row break" is not splitted into two rows.
For .net pages we use carriage return "\r".
Label text in c#:
We get the same result when using System.Environment.NewLine :
For asp pages we use for "row breaking" chr(13)
Label text in Server side VBscript:
[/img]
For TeeChart Pro v7 ActiveX with Unicode (TeeChart7Activex.exe and TeeChartAX7MultiLangUnicode.exe installed) the label with "row break" is not splitted into two rows.
For .net pages we use carriage return "\r".
Label text in c#:
Code: Select all
readingDate.ToShortDateString() + "\r" + LReadingDate.ToShortDateString()
Code: Select all
readingDate.ToShortDateString() + System.Environment.NewLine + LReadingDate.ToShortDateString()
Label text in Server side VBscript:
Code: Select all
month & chr(13) & year
[/img]