Clipped Titles in PlotXY()

I'm finding that long plot Titles are truncated. Is there a maximum length that is not documented?

Here's a simple example (based on plotxy.e) that reproduces the problem.

struct plotControl myPlot;
myPlot = plotGetDefaults( "xy" );

// Generate data
x = seqa(0,.06,250);
y = sin(x)^2 .* cos(x)^3 ./ (sin(x)+1);

// Set Main Graph Title
plotSetTitle( &myPlot, "I think I have a problem when I make my titles too long because it seems like GAUSS is clipping them for no particular reason." );

plotXY( myPlot, x, y );

I've tried including linebreaks (both \L and, in the <html> format, <br> ), but the truncation seems to occur after a fixed number of characters, independent of the position on the page.

Suggestions for a work-around would be welcomed.

4 Answers



1



The original plotXY implementation displayed 64 characters in the title text. The plotControl structure will hold strings of any length. The version under development now (15) has increased this length to 512 characters.

aptech

1,773


0



You can add a textbox to the graph by using the Graphics Editor in versions 13 and 14. This will allow longer text, but does not support HTML. You can use any UTF characters.

Special characters can be added by using the Windows Character Map: http://windows.microsoft.com/en-us/windows/using-special-characters-character-map-faq#1TC=windows-7

or with the hot-keys listed here for Mac and Windows. http://www.nouilles.info/keyboard_shortcuts.html

aptech

1,773


0



Thanks for the explanation. The problem is that I want to use a multi-line title, so the total length quickly hits the limit. (Did I overlook this limit in the documentation somewhere?)

I'm trying to incorporate the title string into procs, so the textbox workaround doesn't seem applicable. (Is there a PlotSetTextBox() or similar command that I'm overlooking?) Thanks for the suggestion, though.



0



Well...the not quite yet release version (15) that allows 512 characters for titles, labels etc. also has plotAddTextbox.

aptech

1,773

Your Answer

4 Answers

1

The original plotXY implementation displayed 64 characters in the title text. The plotControl structure will hold strings of any length. The version under development now (15) has increased this length to 512 characters.

0

You can add a textbox to the graph by using the Graphics Editor in versions 13 and 14. This will allow longer text, but does not support HTML. You can use any UTF characters.

Special characters can be added by using the Windows Character Map: http://windows.microsoft.com/en-us/windows/using-special-characters-character-map-faq#1TC=windows-7

or with the hot-keys listed here for Mac and Windows. http://www.nouilles.info/keyboard_shortcuts.html

0

Thanks for the explanation. The problem is that I want to use a multi-line title, so the total length quickly hits the limit. (Did I overlook this limit in the documentation somewhere?)

I'm trying to incorporate the title string into procs, so the textbox workaround doesn't seem applicable. (Is there a PlotSetTextBox() or similar command that I'm overlooking?) Thanks for the suggestion, though.

0

Well...the not quite yet release version (15) that allows 512 characters for titles, labels etc. also has plotAddTextbox.


You must login to post answers.

Have a Specific Question?

Get a real answer from a real person

Need Support?

Get help from our friendly experts.

Try GAUSS for 14 days for FREE

See what GAUSS can do for your data

© Aptech Systems, Inc. All rights reserved.

Privacy Policy