<?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 Re: Changing Font Type and Size within a GraphBuilder &amp;gt; Customize &amp;gt; Script? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257335#M50568</link>
    <description>Hi MArk,&lt;BR /&gt;&lt;BR /&gt;Thank you for your help (as always). I was able to define the font size using Text Size (n) but I could not get the Text Font () command to work. I'm working with JMP 14.1 and the specific short script is part of a Graph Builder customization: is there specific commands that cannot be used in such GB scripts?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;TS</description>
    <pubDate>Fri, 10 Apr 2020 19:23:30 GMT</pubDate>
    <dc:creator>Thierry_S</dc:creator>
    <dc:date>2020-04-10T19:23:30Z</dc:date>
    <item>
      <title>Changing Font Type and Size within a GraphBuilder &gt; Customize &gt; Script?</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257304#M50566</link>
      <description>&lt;P&gt;Hi JMP Community,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have a problem with a short script associated with a Graph Builder customization that aims at adding annotations to a bar graph. Specifically, I'm trying to adjust the font type and size in this script but I'm getting an error message:&lt;EM&gt;&amp;nbsp;Name Unresolved: Font in access or evaluation of 'Font' , Font( "Arial Narrow" ) /*###*/&lt;/EM&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;For( i = 0, i &amp;lt; 46, i = i + 2,
	Text (
		Center Justified,
		{i + 0.5, 0.85},
		"p: " || Char( Format( Column( dt, 8 )[i + 1], "PValue" ) ),
		Font ("Arial Narrow"),
		Font Size (6)
	) 
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Of note: without the Font (), and Font Size elements, the script works&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your help.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;TS&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 17:57:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257304#M50566</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2020-04-10T17:57:26Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Font Type and Size within a GraphBuilder &gt; Customize &gt; Script?</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257306#M50567</link>
      <description>&lt;P&gt;You call &lt;STRONG&gt;Text Font()&lt;/STRONG&gt; and &lt;STRONG&gt;Font Size()&lt;/STRONG&gt; before calling &lt;STRONG&gt;Text()&lt;/STRONG&gt;. They are not arguments to Text(). See this &lt;A href="https://www.jmp.com/support/help/en/15.1/#page/jmp/graphics-functions.shtml?os=win&amp;amp;source=application&amp;amp;utm_source=helpmenu&amp;amp;utm_medium=application#ww4568748" target="_self"&gt;help&lt;/A&gt;.&lt;/P&gt;</description>
      <pubDate>Fri, 10 Apr 2020 18:02:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257306#M50567</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-04-10T18:02:47Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Font Type and Size within a GraphBuilder &gt; Customize &gt; Script?</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257335#M50568</link>
      <description>Hi MArk,&lt;BR /&gt;&lt;BR /&gt;Thank you for your help (as always). I was able to define the font size using Text Size (n) but I could not get the Text Font () command to work. I'm working with JMP 14.1 and the specific short script is part of a Graph Builder customization: is there specific commands that cannot be used in such GB scripts?&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;TS</description>
      <pubDate>Fri, 10 Apr 2020 19:23:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257335#M50568</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2020-04-10T19:23:30Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Font Type and Size within a GraphBuilder &gt; Customize &gt; Script?</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257349#M50571</link>
      <description>&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( 534, 456 ),
	Show Control Panel( 0 ),
	Variables( X( :height ), Y( :weight ) ),
	Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) )
);

gbr = gb &amp;lt;&amp;lt; Report;

gbr[FrameBox(1)] &amp;lt;&amp;lt; Add Graphics Script(
	Text Font( "Arial" );
	Text Size( 24 );
	Text( { 55, 150 }, "Hello, world!" );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 10 Apr 2020 19:54:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257349#M50571</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2020-04-10T19:54:14Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Font Type and Size within a GraphBuilder &gt; Customize &gt; Script?</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257459#M50591</link>
      <description>Hi Mark,&lt;BR /&gt;It looks like I jump the gun: the command Text Font ("arial") is still producing an error in JMP 14.1:&lt;BR /&gt;Name Unresolved: Text Font in access or evaluation of 'Text Font' , Text Font( "Arial" ) /*###*/&lt;BR /&gt;It looks like the font type cannot be changed/updated within a Graphics Script at least in JMP 14.1&lt;BR /&gt;&lt;BR /&gt;Thanks for your help.&lt;BR /&gt;Best,&lt;BR /&gt;TS&lt;BR /&gt;</description>
      <pubDate>Sat, 11 Apr 2020 18:06:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257459#M50591</guid>
      <dc:creator>Thierry_S</dc:creator>
      <dc:date>2020-04-11T18:06:32Z</dc:date>
    </item>
    <item>
      <title>Re: Changing Font Type and Size within a GraphBuilder &gt; Customize &gt; Script?</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257464#M50593</link>
      <description>The JMP 14 Scripting Index does not show any option to change the Font in the Add Graphics or Graph Box environment.</description>
      <pubDate>Sat, 11 Apr 2020 18:58:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-Font-Type-and-Size-within-a-GraphBuilder-gt-Customize/m-p/257464#M50593</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-04-11T18:58:18Z</dc:date>
    </item>
  </channel>
</rss>

