<?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: Change axis width in Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722123#M90401</link>
    <description>&lt;P&gt;I believe you have discovered a JMP bug.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Set Width()&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;does not change the Axis Box() width in Graph Builder.&lt;/P&gt;
&lt;P&gt;Interactively, the Axis width can be changed, and the change is reflected in the Stretching Property of the AxisBox.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Concerning&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Get Width&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The Scripting Index does not show a Get Width message as being valid. Regardless, it does seem to work for Bivariate, Oneway, Contour.......&lt;/P&gt;
&lt;P&gt;However, what is returned when run against Graph Builder is a completely bogus.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe that you need to contact JMP Support to work through this.&lt;/P&gt;</description>
    <pubDate>Mon, 05 Feb 2024 15:26:59 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2024-02-05T15:26:59Z</dc:date>
    <item>
      <title>Change axis width in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722038#M90388</link>
      <description>&lt;P&gt;I would like to change the axis width in Graph Builder, but the &amp;lt;&amp;lt;Set Width message doesn't seem to work. My demo script:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 ); 
dt_class = Open( "$SAMPLE_DATA/Big Class.jmp" );
gb_test = Graph Builder(
	Size( 534, 454 ),
	Show Control Panel( 0 ),
	Variables(
		X( :height ),
		Y( :name, Order By( :height, Ascending, Order Statistic( "Mean" ) ) )
	),
	Elements( Bar( X, Y, Legend( 4 ) ) )
);
show( Report( gb_test )["Graph Builder",AxisBox(2)] &amp;lt;&amp;lt; get width() );
Report( gb_test )["Graph Builder",AxisBox(2)] &amp;lt;&amp;lt; set width( 200 );
show( Report( gb_test )["Graph Builder",AxisBox(2)] &amp;lt;&amp;lt; get width() );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And the result:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Report(gb_test)["Graph Builder",AxisBox(2)] &amp;lt;&amp;lt; get width() = 68;
Report(gb_test)["Graph Builder",AxisBox(2)] &amp;lt;&amp;lt; get width() = 68;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Specifically it's the width of the area available for the y-axis labels.&amp;nbsp;&lt;/P&gt;&lt;P&gt;The reason is I have a dataset with some very long labels and I want to reduce the default width so the labels wrap and make the chart cleaner.&lt;/P&gt;&lt;P&gt;I'm using JMP 17.2 on MacOS.&lt;/P&gt;&lt;P&gt;There's a similar question from 2014 which wasn't resolved:&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Discussions/Changing-axis-box-width-in-graph-builder/td-p/9955" target="_blank"&gt;https://community.jmp.com/t5/Discussions/Changing-axis-box-width-in-graph-builder/td-p/9955&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2024 12:03:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722038#M90388</guid>
      <dc:creator>matth1</dc:creator>
      <dc:date>2024-02-05T12:03:41Z</dc:date>
    </item>
    <item>
      <title>Re: Change axis width in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722123#M90401</link>
      <description>&lt;P&gt;I believe you have discovered a JMP bug.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Set Width()&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;does not change the Axis Box() width in Graph Builder.&lt;/P&gt;
&lt;P&gt;Interactively, the Axis width can be changed, and the change is reflected in the Stretching Property of the AxisBox.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Concerning&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; Get Width&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The Scripting Index does not show a Get Width message as being valid. Regardless, it does seem to work for Bivariate, Oneway, Contour.......&lt;/P&gt;
&lt;P&gt;However, what is returned when run against Graph Builder is a completely bogus.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I believe that you need to contact JMP Support to work through this.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2024 15:26:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722123#M90401</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-02-05T15:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Change axis width in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722126#M90402</link>
      <description>&lt;P&gt;I think GraphBuilderTitleBox or some other display box could be messing with the axis box width (graph builder's "special" boxes are most likely the most annoying/buggy display boxes in JMP).&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2024 15:53:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722126#M90402</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-05T15:53:05Z</dc:date>
    </item>
    <item>
      <title>Re: Change axis width in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722128#M90403</link>
      <description>&lt;P&gt;Thanks both. Case&amp;nbsp;&lt;SPAN&gt;TS-00127657 opened.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 05 Feb 2024 16:12:06 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-axis-width-in-Graph-Builder/m-p/722128#M90403</guid>
      <dc:creator>matth1</dc:creator>
      <dc:date>2024-02-05T16:12:06Z</dc:date>
    </item>
  </channel>
</rss>

