The text of annotation can be in different lines when I edit it in editing tools.
Is it possible to get the same result when I set a text in programs ? Insert a line feed code ? If yes, what's the line feed code TeeChart can recognize?
Thanks.
how to change line (line feed) in annotation
Hi Jason,
you can do :
TChart1.Tools.Items(0).asAnnotation.Text = "Hello" + Chr(13) + "World"
you can do :
TChart1.Tools.Items(0).asAnnotation.Text = "Hello" + Chr(13) + "World"
Pep Jorge
http://support.steema.com
http://support.steema.com
Hi Jason,
how about using :
TChart1.Tools.Items(0).asAnnotation.Text = "Hello \r"+ "World";
how about using :
TChart1.Tools.Items(0).asAnnotation.Text = "Hello \r"+ "World";
Pep Jorge
http://support.steema.com
http://support.steema.com