<?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 Talking to Display boxes in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Talking-to-Display-boxes/m-p/665664#M85398</link>
    <description>&lt;P&gt;The auto-generated script to generate this plot&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1691164695780.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55578i141AB832EFA1C071/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1691164695780.png" alt="hogi_0-1691164695780.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;is&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	SendToReport( Dispatch( {}, "X title", TextEditBox, {Set Text( "xxx" )} ) )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Why "X title"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- What is a robust way to talk later with the X axis title.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;current Report()[TextEditBox(3)]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;seems to work - but is there something with "X axis" included in the command?&lt;/P&gt;</description>
    <pubDate>Fri, 04 Aug 2023 16:06:19 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-08-04T16:06:19Z</dc:date>
    <item>
      <title>Talking to Display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Talking-to-Display-boxes/m-p/665664#M85398</link>
      <description>&lt;P&gt;The auto-generated script to generate this plot&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1691164695780.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/55578i141AB832EFA1C071/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1691164695780.png" alt="hogi_0-1691164695780.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;is&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	SendToReport( Dispatch( {}, "X title", TextEditBox, {Set Text( "xxx" )} ) )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Why "X title"?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;- What is a robust way to talk later with the X axis title.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;current Report()[TextEditBox(3)]&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;seems to work - but is there something with "X axis" included in the command?&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2023 16:06:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Talking-to-Display-boxes/m-p/665664#M85398</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-08-04T16:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: Talking to Display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Talking-to-Display-boxes/m-p/665700#M85403</link>
      <description>&lt;P&gt;Not sure if there are any "direct" ways of accessing that axis title, but you can use Dispatch (which to my knowledge should be avoided...)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1); 

dt = Open("$SAMPLE_DATA/Big Class.jmp");

gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(520, 176),
	Show Control Panel(0),
	Variables(X(:height), Y(:weight), Overlay(:sex)),
	Elements(Points(X, Y, Legend(13)), Smoother(X, Y, Legend(14)))
);

Report(gb) &amp;lt;&amp;lt; Dispatch(
	{},
	"X title",
	TextEditBox,
	{Text Color("Red"), Set Base Font("Heading"), Font Color(3)}
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 04 Aug 2023 17:12:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Talking-to-Display-boxes/m-p/665700#M85403</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-08-04T17:12:18Z</dc:date>
    </item>
    <item>
      <title>Re: Talking to Display boxes</title>
      <link>https://community.jmp.com/t5/Discussions/Talking-to-Display-boxes/m-p/665750#M85405</link>
      <description>&lt;P&gt;yes, right, these 2 considerations have led me to write the question.&lt;/P&gt;</description>
      <pubDate>Fri, 04 Aug 2023 18:39:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Talking-to-Display-boxes/m-p/665750#M85405</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-08-04T18:39:22Z</dc:date>
    </item>
  </channel>
</rss>

