<?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: Hide x-axis and y-axis number label in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438834#M68751</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3605"&gt;@ian_jmp&lt;/a&gt;&amp;nbsp;: Thanks a lot.&lt;/P&gt;
&lt;P&gt;Actually a mixture of both of your answers did the thing, I needed at this point.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
i= 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//AxisBox" )) &amp;lt;&amp;lt; Show Major Labels( 0 ) );
	i++;
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For removing all the axis items of a profiler axis (except the title), I extended the script with this&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
i = 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//TextBox" )) &amp;lt;&amp;lt; visibility( hidden ) );
	i++;
);
i= 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//AxisBox" )) &amp;lt;&amp;lt; Show Major Labels( 0 ) );
	i++;
);
i= 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//NumberEditBox" )) &amp;lt;&amp;lt; visibility( hidden ) );
	i++;
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;One has to be cautious, since e.g.&amp;nbsp;&lt;CODE class=" language-jsl"&gt;xpath( "//TextBox" ))&lt;/CODE&gt;&amp;nbsp; then attributes the visibility to all TextBoxes.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This removes other things one probably does not want to remove!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/17550"&gt;@Florian_Vogt&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/18064"&gt;@Emmanuel_Romeu&lt;/a&gt;&amp;nbsp;: Since we discussed this, possible interesting to know this work around!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 22 Nov 2021 14:41:30 GMT</pubDate>
    <dc:creator>Benjamin_Fuerst</dc:creator>
    <dc:date>2021-11-22T14:41:30Z</dc:date>
    <item>
      <title>Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438725#M68738</link>
      <description>&lt;P&gt;Hello JMP community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I am preparing my talk on the upcoming discovery summit.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Because of confidentiality reasons I cannot show the y and x-axis labels.&lt;/P&gt;
&lt;P&gt;See pic, where I removed the axis box via the properties visibility option.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Benjamin_Fuerst_1-1637561675406.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37733iBC36C84ACD4F17EC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Benjamin_Fuerst_1-1637561675406.png" alt="Benjamin_Fuerst_1-1637561675406.png" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Benjamin_Fuerst_2-1637561728035.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37734iB26C86383E5E1851/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Benjamin_Fuerst_2-1637561728035.png" alt="Benjamin_Fuerst_2-1637561728035.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Normalizing all the data to range 0 to 1 changes all the analyses I did with scripts.&lt;/P&gt;
&lt;P&gt;So as I see it, I need to keep the original (confidential) numbers but need to hide the Axis Box.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can anybody assist me with a better idea than doing it manually in the properties or something totally different approach how to avoid showing confidential data?&lt;/P&gt;
&lt;P&gt;Ideally there would be something like a column properties which suppresses the number showing on the axises in all analyses.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Appreciate a hint for an easier way to do this!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;BR /&gt;Ben&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:19:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438725#M68738</guid>
      <dc:creator>Benjamin_Fuerst</dc:creator>
      <dc:date>2023-06-11T11:19:41Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438753#M68742</link>
      <description>&lt;P&gt;Here is a simple script that will hide the axis values for all windows in your session.&amp;nbsp; To make the axis values visible, change "hidden" to "visible" and rerun the script.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
i = 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//AxisBox" )) &amp;lt;&amp;lt; visibility( hidden ) );
	i++;
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 09:42:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438753#M68742</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-11-22T09:42:38Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438777#M68744</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26723"&gt;@Benjamin_Fuerst&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;I think &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt; gave a good solution.&lt;/P&gt;
&lt;P&gt;I was expecting to have this ability in the preferences but i didn't manage to see any difference with or without these options selected. Can anyone demonstrate the difference?&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ron_horne_1-1637578645412.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/37736i6AA836E7E90BD8B6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ron_horne_1-1637578645412.png" alt="ron_horne_1-1637578645412.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 10:59:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438777#M68744</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2021-11-22T10:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438778#M68745</link>
      <description>&lt;P&gt;Depending on exactly what's needed, you can just suppress the numbers that appear on the axes too:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);

dt = Open("$SAMPLE_DATA/Big Class.jmp");

biv = dt &amp;lt;&amp;lt; Bivariate(X(:height), Y(:weight));

Wait(2);

bivRep = Report(biv);
abs = bivRep &amp;lt;&amp;lt; Xpath("//AxisBox");
abs &amp;lt;&amp;lt; Show Major Labels( 0 );&lt;/CODE&gt;&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 22 Nov 2021 12:37:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438778#M68745</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2021-11-22T12:37:19Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438833#M68750</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/958"&gt;@ron_horne&lt;/a&gt;&amp;nbsp;I could not see a difference having it ticked or not in the graphbuilder...&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 14:32:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438833#M68750</guid>
      <dc:creator>Benjamin_Fuerst</dc:creator>
      <dc:date>2021-11-22T14:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438834#M68751</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3605"&gt;@ian_jmp&lt;/a&gt;&amp;nbsp;: Thanks a lot.&lt;/P&gt;
&lt;P&gt;Actually a mixture of both of your answers did the thing, I needed at this point.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
i= 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//AxisBox" )) &amp;lt;&amp;lt; Show Major Labels( 0 ) );
	i++;
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;For removing all the axis items of a profiler axis (except the title), I extended the script with this&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
i = 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//TextBox" )) &amp;lt;&amp;lt; visibility( hidden ) );
	i++;
);
i= 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//AxisBox" )) &amp;lt;&amp;lt; Show Major Labels( 0 ) );
	i++;
);
i= 1;
While( Window( i ) &amp;lt;&amp;lt; get window title != {},
	Try( (Window( i ) &amp;lt;&amp;lt; xpath( "//NumberEditBox" )) &amp;lt;&amp;lt; visibility( hidden ) );
	i++;
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;One has to be cautious, since e.g.&amp;nbsp;&lt;CODE class=" language-jsl"&gt;xpath( "//TextBox" ))&lt;/CODE&gt;&amp;nbsp; then attributes the visibility to all TextBoxes.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This removes other things one probably does not want to remove!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/17550"&gt;@Florian_Vogt&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/18064"&gt;@Emmanuel_Romeu&lt;/a&gt;&amp;nbsp;: Since we discussed this, possible interesting to know this work around!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 14:41:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438834#M68751</guid>
      <dc:creator>Benjamin_Fuerst</dc:creator>
      <dc:date>2021-11-22T14:41:30Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438839#M68753</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/958"&gt;@ron_horne&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;have you restarted JMP after changing the preference?&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 15:17:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438839#M68753</guid>
      <dc:creator>Florian_Vogt</dc:creator>
      <dc:date>2021-11-22T15:17:35Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438870#M68755</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/17550"&gt;@Florian_Vogt&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i did restart, could you show me a picture of with and without these boxes checked?&lt;/P&gt;
&lt;P&gt;so i know what to look for.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Nov 2021 15:51:32 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/438870#M68755</guid>
      <dc:creator>ron_horne</dc:creator>
      <dc:date>2021-11-22T15:51:32Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/439234#M68773</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/958"&gt;@ron_horne&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I was initially rather generally speaking - while I wanted to prepare the screenshots, I found out this is a bug which is already under construction and will be solved.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The correct way is,&amp;nbsp;the boxes (that you have outlined by a box in your screenshot) are ticked as default. If you uncheck them and restart JMP, the graph builder will not show the axes.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;Florian&lt;/P&gt;</description>
      <pubDate>Tue, 23 Nov 2021 10:06:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/439234#M68773</guid>
      <dc:creator>Florian_Vogt</dc:creator>
      <dc:date>2021-11-23T10:06:26Z</dc:date>
    </item>
    <item>
      <title>Re: Hide x-axis and y-axis number label</title>
      <link>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/736208#M91693</link>
      <description>&lt;P&gt;HI Jim,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for sharing this with the community, I found it very useful!&lt;/P&gt;&lt;P&gt;Can you please help tell me how to modify the code so it only hides the values on the Y-axis ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;ML&lt;/P&gt;</description>
      <pubDate>Tue, 19 Mar 2024 07:22:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hide-x-axis-and-y-axis-number-label/m-p/736208#M91693</guid>
      <dc:creator>MELIU</dc:creator>
      <dc:date>2024-03-19T07:22:18Z</dc:date>
    </item>
  </channel>
</rss>

