Quote:
|
Originally Posted by firedave
For the next line you could use "\n" . Maybe this example could help you :
PHP Code:
firstlineCOMMENT = "this is first line";
secondlineCOMMENT = "\nthis is secone line";
thirdlineCOMMENT = "\nthis is third line";
Comment(firstlineCOMMENT,secondlineCOMMENT,thirdlineCOMMENT);
Hope this help 
|
Thanks Dave, yes it puts it on the next line, but for some reason I only have one line at a time displaying, I want to have
firstcomment("some info", stuff)
then on the next line on the chart
secondcomment(("some more info", stuff1)
so it appears on the chart like this
some info 204
some more info 210
I only get the last line each time
Thanks a lot for your help
