<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Adding lines of text between graphs in a Journal in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Adding-lines-of-text-between-graphs-in-a-Journal/m-p/675061#M86212</link>
    <description>&lt;P&gt;I have created a fairly extensive journal and would like to add lines of text between i.e., graphs, as this will help the users know what the following reports and graphs are about.&amp;nbsp; I have tried the following (a solution from a prior question in the forum):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;w1 = New Window ("Reports", &amp;lt;&amp;lt;Journal,&lt;BR /&gt;hlb = H List Box(&lt;BR /&gt;lub = Lineup Box(&lt;BR /&gt;tb1 = Text Box( "************************ TEST TEXT ************************" )&lt;BR /&gt;)));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, this splits my journal into multiple windows, and that is undesirable.&lt;/P&gt;&lt;P&gt;Is there a way to insert lines of text between graphs and reports in a Journal?&lt;/P&gt;</description>
    <pubDate>Wed, 06 Sep 2023 21:24:10 GMT</pubDate>
    <dc:creator>RSantana</dc:creator>
    <dc:date>2023-09-06T21:24:10Z</dc:date>
    <item>
      <title>Adding lines of text between graphs in a Journal</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-lines-of-text-between-graphs-in-a-Journal/m-p/675061#M86212</link>
      <description>&lt;P&gt;I have created a fairly extensive journal and would like to add lines of text between i.e., graphs, as this will help the users know what the following reports and graphs are about.&amp;nbsp; I have tried the following (a solution from a prior question in the forum):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;w1 = New Window ("Reports", &amp;lt;&amp;lt;Journal,&lt;BR /&gt;hlb = H List Box(&lt;BR /&gt;lub = Lineup Box(&lt;BR /&gt;tb1 = Text Box( "************************ TEST TEXT ************************" )&lt;BR /&gt;)));&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, this splits my journal into multiple windows, and that is undesirable.&lt;/P&gt;&lt;P&gt;Is there a way to insert lines of text between graphs and reports in a Journal?&lt;/P&gt;</description>
      <pubDate>Wed, 06 Sep 2023 21:24:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-lines-of-text-between-graphs-in-a-Journal/m-p/675061#M86212</guid>
      <dc:creator>RSantana</dc:creator>
      <dc:date>2023-09-06T21:24:10Z</dc:date>
    </item>
    <item>
      <title>Re: Adding lines of text between graphs in a Journal</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-lines-of-text-between-graphs-in-a-Journal/m-p/675071#M86214</link>
      <description>&lt;P&gt;Here is an example of one way to do this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );

NW = New Window( "My Journal", &amp;lt;&amp;lt;journal, vlb = V List Box() );

dis = Distribution(
	invisible,
	Continuous Distribution( Column( :weight ) ),
	Nominal Distribution( Column( :age ) )
);

vlb &amp;lt;&amp;lt; append( Report( dis )[Outline Box( 1 )] );

vlb &amp;lt;&amp;lt; append( Text Box( "here is a line of text" ) );
vlb &amp;lt;&amp;lt; append( Text Box( "a second line" ) );

biv = Bivariate( Y( :weight ), X( :height ), Fit Line( {Line Color( {212, 73, 88} )} ), invisible );
vlb &amp;lt;&amp;lt; append( Report( biv )[Outline Box( 1 )] );
vlb &amp;lt;&amp;lt; append( Text Box( "some more text" ) );
vlb &amp;lt;&amp;lt; append( Text Box( "and still another line of text" ) );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 06 Sep 2023 21:54:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-lines-of-text-between-graphs-in-a-Journal/m-p/675071#M86214</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-09-06T21:54:06Z</dc:date>
    </item>
  </channel>
</rss>

