<?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 Remove percentage sign in Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/456940#M70217</link>
    <description>&lt;P&gt;Hi -&lt;/P&gt;&lt;P&gt;I am interested in removing redundant % sign in the graph generated with graph builder since Y axis already has it. This would help with space when I have too many bars.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I remove percentage sign that is highlighted in red?&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="Jmp_Query.png" style="width: 173px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39587i6644F68225C2A5A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Jmp_Query.png" alt="Jmp_Query.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am using Jmp 12.2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
    <pubDate>Fri, 28 Jan 2022 21:40:57 GMT</pubDate>
    <dc:creator>uProf</dc:creator>
    <dc:date>2022-01-28T21:40:57Z</dc:date>
    <item>
      <title>Remove percentage sign in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/456940#M70217</link>
      <description>&lt;P&gt;Hi -&lt;/P&gt;&lt;P&gt;I am interested in removing redundant % sign in the graph generated with graph builder since Y axis already has it. This would help with space when I have too many bars.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;How can I remove percentage sign that is highlighted in red?&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="Jmp_Query.png" style="width: 173px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39587i6644F68225C2A5A4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Jmp_Query.png" alt="Jmp_Query.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;I am using Jmp 12.2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jan 2022 21:40:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/456940#M70217</guid>
      <dc:creator>uProf</dc:creator>
      <dc:date>2022-01-28T21:40:57Z</dc:date>
    </item>
    <item>
      <title>Re: Remove percentage sign in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/457139#M70237</link>
      <description>&lt;P&gt;Sorry, I don't have that version to hand. But, if it helps, in the current version theres an 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="Screenshot 2022-01-31 at 12.51.25.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39598i40550C932B187726/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screenshot 2022-01-31 at 12.51.25.png" alt="Screenshot 2022-01-31 at 12.51.25.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 31 Jan 2022 12:56:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/457139#M70237</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2022-01-31T12:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Remove percentage sign in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/457237#M70242</link>
      <description>&lt;P&gt;The only way that I think you can do what you want is to add the labels by writing some simple JSL.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1643642687575.png" style="width: 521px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/39616i19C77707F2A8CECD/image-dimensions/521x456?v=v2" width="521" height="456" role="button" title="txnelson_0-1643642687575.png" alt="txnelson_0-1643642687575.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
dt &amp;lt;&amp;lt; New Column( "percent", Format( "percent", 12, 1 ), formula( :Height / :Weight ) );
gb = Graph Builder(
	Size( 528, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :percent ) ),
	Elements( Bar( X, Y, Legend( 6 ) ) )
);
gbr = gb &amp;lt;&amp;lt; report;
flist = {.0};
Insert Into( flist, Round( Col Mean( If( :sex == "F", :percent, . ) ), 3 ) );
f = Char( flist[2] * 100 );
mlist = {1};
Insert Into( mlist, Round( Col Mean( If( :sex == "M", :percent, . ) ), 3 ) );
m = Char( mlist[2] * 100 );
gbr[framebox( 1 )] &amp;lt;&amp;lt; Add Graphics Script(
	Text( Center Justified, flist, f );
	Text( Center Justified, mlist, m );
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 31 Jan 2022 15:25:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/457237#M70242</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-01-31T15:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Remove percentage sign in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/643126#M83980</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3605"&gt;@ian_jmp&lt;/a&gt;&amp;nbsp;&lt;BR /&gt;Doesn't the screenshot shows how to remove &lt;EM&gt;the label&lt;/EM&gt;?&lt;BR /&gt;&lt;BR /&gt;How to remove the &lt;EM&gt;percentage sign&lt;/EM&gt; of the label in the current Jmp version?&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 18:24:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/643126#M83980</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-15T18:24:08Z</dc:date>
    </item>
    <item>
      <title>Re: Remove percentage sign in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/644881#M84149</link>
      <description>&lt;P&gt;Here is a solution for newer versions of JMP&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;We can start with the same example as the previous post&lt;/SPAN&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/big class.jmp" );
dt &amp;lt;&amp;lt; New Column( "percent", Format( "percent", 12, 1 ), formula( :Height / :Weight ) );
gb = Graph Builder(
	Size( 528, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :sex ), Y( :percent ) ),
	Elements( Bar( X, Y, Legend( 6 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Then in Graph Builder choose Label -&amp;gt; Label By Value.&amp;nbsp; This will show the extra % symbol&lt;/SPAN&gt;&lt;BR clear="none" /&gt;&lt;SPAN&gt;Under Label Format, click on the Auto dropdown (twice) and choose a new format.&amp;nbsp; One option would be best or fixed dec, but this will show the format as a decimal value&lt;/SPAN&gt;&lt;BR clear="none" /&gt;&lt;BR clear="none" /&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_cb5bf9bf1ba56laura_archer_0" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="laura_archer_3-1687368827257.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54005iD6F5F5FB1D44ABA5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laura_archer_3-1687368827257.png" alt="laura_archer_3-1687368827257.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR clear="none" /&gt;&lt;SPAN&gt;To get that value * 100, but without the percent symbol click on the dropdown again and choose Custom&lt;/SPAN&gt;&lt;BR clear="none" /&gt;&lt;SPAN&gt;Click Set Custom Format&lt;/SPAN&gt;&lt;BR clear="none" /&gt;&lt;SPAN&gt;The formula editor will open with the word value in the middle.&amp;nbsp; Click the multiplication button and then type 100&lt;/SPAN&gt;&lt;/P&gt;
&lt;DIV id="tinyMceEditor_cb5bf9bf1ba56laura_archer_1" class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="laura_archer_4-1687368868235.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54006iC79A3D645C8B9378/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laura_archer_4-1687368868235.png" alt="laura_archer_4-1687368868235.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;BR clear="none" /&gt;&lt;SPAN&gt;Click OK&lt;/SPAN&gt;&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="laura_archer_5-1687368895779.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54007iF562C9C13EDFF198/image-size/medium?v=v2&amp;amp;px=400" role="button" title="laura_archer_5-1687368895779.png" alt="laura_archer_5-1687368895779.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Jun 2023 17:35:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Remove-percentage-sign-in-Graph-Builder/m-p/644881#M84149</guid>
      <dc:creator>laura_archer</dc:creator>
      <dc:date>2023-06-21T17:35:52Z</dc:date>
    </item>
  </channel>
</rss>

