<?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: Can’t set the tick mark line weight in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425812#M67532</link>
    <description>&lt;P&gt;Thanks!&amp;nbsp;A note:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Elements( Bar( X, Y,Legend( 1 ), Error Interval( "Standard Deviation" ) ) )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Legend( 1 ), Error Interval( "Standard Deviation" ) &lt;/PRE&gt;&lt;P&gt;must be in the script and legend has to be set to 1.&lt;/P&gt;&lt;P&gt;If not, legend not equal 1: off set error bars&lt;/P&gt;&lt;P&gt;If you run the script and use point and click to add error bars after the segment spaceing:&amp;nbsp;&amp;nbsp;off set error bars&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 12 Oct 2021 19:02:05 GMT</pubDate>
    <dc:creator>buzuddha1</dc:creator>
    <dc:date>2021-10-12T19:02:05Z</dc:date>
    <item>
      <title>Can’t set the tick mark line weight</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/424365#M67466</link>
      <description>&lt;P&gt;[Moved from&amp;nbsp;&lt;LI-MESSAGE title="Graph Builder: allow setting the tick mark line weight]" uid="62653" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-allow-setting-the-tick-mark-line-weight/m-p/62653#U62653" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This doesn't seem to work for me. I can change the axis line weight but not the tick mark weight by modifying line width in properties. Weirdly, I can only increase it once, the line weight won't update after the first change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Likewise, I'm trying to solve a similar problem, which is tick mark weight &lt;EM&gt;and&lt;/EM&gt; length. You see, my new bosses insist I present data in prism graphs, &lt;U&gt;which I'm simply not going to do&lt;/U&gt;. Instead, I'm going to make it &lt;EM&gt;look&lt;/EM&gt; like I used prism.&amp;nbsp;I'm close to cloning the prism format with JMP (see attached), but need to increase the axis weight, tick mark weight, tick mark length and enclose box plots with a line. What is the best way to do this with JSL?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Ideally, I'd write a script called prismify which would convert an object to prism-like format, but that may be down the road.&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="Test1.jpg" style="width: 979px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36385i08CCC75AEB8F053E/image-size/large?v=v2&amp;amp;px=999" role="button" title="Test1.jpg" alt="Test1.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:18:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/424365#M67466</guid>
      <dc:creator>buzuddha1</dc:creator>
      <dc:date>2023-06-11T11:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: Can’t set the tick mark line weight</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425428#M67486</link>
      <description>&lt;P&gt;I'm not sure about the height of the tick itself, but starting in JMP 16 you can adjust the color and weight in properties for that item.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;LI-MESSAGE title="Graph Builder: allow setting the tick mark line weight" uid="62653" url="https://community.jmp.com/t5/JMP-Wish-List/Graph-Builder-allow-setting-the-tick-mark-line-weight/m-p/62653#U62653" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note that there is a setting to adjust the distance between the bars, try playing with different negative values in first parameter of Set Side y Side Overlap:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Graph Builder( Variables( X( :age ), Y( :weight ), Overlay( :sex ) ), Elements( Bar( X, Y ) ) );
frame = Report( obj )[FrameBox( 1 )];
seg = (frame &amp;lt;&amp;lt; Find Seg( "Bar Seg" ));
seg &amp;lt;&amp;lt; Set Side by Side Overlap( -0.5 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Oct 2021 18:12:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425428#M67486</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2021-10-11T18:12:41Z</dc:date>
    </item>
    <item>
      <title>Re: Can’t set the tick mark line weight</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425763#M67525</link>
      <description>&lt;P&gt;Thanks ih,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This solution works well except that the error bars then need to be moved (see attached).&amp;nbsp; Can I grab those and send them to "Set Side by Side Overlap"?&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="buzuddha1_0-1634058495491.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/36513i5E72FED826C30136/image-size/medium?v=v2&amp;amp;px=400" role="button" title="buzuddha1_0-1634058495491.png" alt="buzuddha1_0-1634058495491.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 17:09:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425763#M67525</guid>
      <dc:creator>buzuddha1</dc:creator>
      <dc:date>2021-10-12T17:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Can’t set the tick mark line weight</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425784#M67527</link>
      <description>&lt;P&gt;Yes, in fact you can do this more directly than what I showed previously:&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 );
Open( "$SAMPLE_DATA/Big Class.jmp" );
obj = Graph Builder( Variables( X( :age ), Y( :weight ), Overlay( :sex ) ), Elements( Bar( X, Y ) ) );

//find all bar segment frames and adjust the distance between all of them
(obj &amp;lt;&amp;lt; XPath("//BarSeg")) &amp;lt;&amp;lt; Set Side by Side Overlap( -.8 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 12 Oct 2021 17:51:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425784#M67527</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2021-10-12T17:51:36Z</dc:date>
    </item>
    <item>
      <title>Re: Can’t set the tick mark line weight</title>
      <link>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425812#M67532</link>
      <description>&lt;P&gt;Thanks!&amp;nbsp;A note:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P class="p1"&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Elements( Bar( X, Y,Legend( 1 ), Error Interval( "Standard Deviation" ) ) )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Legend( 1 ), Error Interval( "Standard Deviation" ) &lt;/PRE&gt;&lt;P&gt;must be in the script and legend has to be set to 1.&lt;/P&gt;&lt;P&gt;If not, legend not equal 1: off set error bars&lt;/P&gt;&lt;P&gt;If you run the script and use point and click to add error bars after the segment spaceing:&amp;nbsp;&amp;nbsp;off set error bars&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Oct 2021 19:02:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Can-t-set-the-tick-mark-line-weight/m-p/425812#M67532</guid>
      <dc:creator>buzuddha1</dc:creator>
      <dc:date>2021-10-12T19:02:05Z</dc:date>
    </item>
  </channel>
</rss>

