Discussion:
how to split long title text in plot
(too old to reply)
skymaxwell
2017-11-17 11:05:03 UTC
Permalink
Hi,

I have

gr=PLOT(datax,datay,TITLE=title)

but my title (text) is long and cutting by edge of graphic window.
Is there any way to split my title for 2 lines ?

As example, I have title

Date dataX dataY

Showing in graphics window only

te dataX dat

how get something like that

Date
dataX DataY


Thanks at advance
Markus Schmassmann
2017-11-17 11:10:37 UTC
Permalink
Post by skymaxwell
I have
gr=PLOT(datax,datay,TITLE=title)
but my title (text) is long and cutting by edge of graphic window.
Is there any way to split my title for 2 lines ?
As example, I have title
Date dataX dataY
Showing in graphics window only
te dataX dat
how get something like that
Date
dataX DataY
gr=plot(/test,title="Date"+string(10b)+"dataX dataY")
Haje Korth
2017-11-17 11:59:59 UTC
Permalink
gr=plot(/test,title="Date!CdataX dataY")
Post by skymaxwell
Hi,
I have
gr=PLOT(datax,datay,TITLE=title)
but my title (text) is long and cutting by edge of graphic window.
Is there any way to split my title for 2 lines ?
As example, I have title
Date dataX dataY
Showing in graphics window only
te dataX dat
how get something like that
Date
dataX DataY
Thanks at advance
skymaxwell
2017-11-17 12:16:53 UTC
Permalink
Post by Haje Korth
gr=plot(/test,title="Date!CdataX dataY")
Post by skymaxwell
Hi,
I have
gr=PLOT(datax,datay,TITLE=title)
but my title (text) is long and cutting by edge of graphic window.
Is there any way to split my title for 2 lines ?
As example, I have title
Date dataX dataY
Showing in graphics window only
te dataX dat
how get something like that
Date
dataX DataY
Thanks at advance
Thank you for your replies

i know about STRING(10B), but it's not help. It's showing strange symbol (something like that happened if you have wrong encoding)

but using !C is help. Now program works fine.

regards

Loading...