<?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: setting Graph Builder error bar properties JMP Pro 15.2.1 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/421099#M66985</link>
    <description>&lt;P&gt;dKip1,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know how to set a global property for error bar end caps.&amp;nbsp; However, JSL or scripting can make tedious customization easier. Below is a simple example.&amp;nbsp; JSL can also be used to create an Application or an Add-in that prompts for X, Y, Color etc. variables and applies the favored customizations. In other words, it works as a front-end to getting the inputs and applies the customizations.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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 ), Color (:age) ), 
            Elements( Bar( X, Y , Legend(5), Error Interval ("Standard Deviation") ) )
       );
frame = Report( obj )[FrameBox( 1 )];  //get a handle for the graph FrameBox

seg = (frame &amp;lt;&amp;lt; XPath("//BarSeg"));    //get a handle for the bars


//--- can customize all at once ---/
seg &amp;lt;&amp;lt; {Error Bar Cap( "Tiny"), Line Color( "Medium Dark Gray"), Line Width( 2 ) } ;

//--- can customize (set properties) individually ---/

//seg &amp;lt;&amp;lt; Set Error Bar Cap( "Tiny");
//seg &amp;lt;&amp;lt; Set Line Color( "Medium Dark Gray");
//seg &amp;lt;&amp;lt; Set Line Width( 2 ) ;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 26 Sep 2021 09:26:59 GMT</pubDate>
    <dc:creator>gzmorgan0</dc:creator>
    <dc:date>2021-09-26T09:26:59Z</dc:date>
    <item>
      <title>setting Graph Builder error bar properties JMP Pro 15.2.1</title>
      <link>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/421059#M66979</link>
      <description>&lt;P&gt;JMP experts:&lt;/P&gt;&lt;P&gt;Is there a way to set error bar properties in Graph Builder globally? For example, I prefer small end caps on my error bars. It seems one must edit each variable's properties individually which is very tedious work across many variables. I've looked under Preferences&amp;gt;Graph and Style and didn't find anything there.&lt;/P&gt;&lt;P&gt;What's the secret?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks in advance.&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:17:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/421059#M66979</guid>
      <dc:creator>Kip1</dc:creator>
      <dc:date>2023-06-11T11:17:43Z</dc:date>
    </item>
    <item>
      <title>Re: setting Graph Builder error bar properties JMP Pro 15.2.1</title>
      <link>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/421099#M66985</link>
      <description>&lt;P&gt;dKip1,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I don't know how to set a global property for error bar end caps.&amp;nbsp; However, JSL or scripting can make tedious customization easier. Below is a simple example.&amp;nbsp; JSL can also be used to create an Application or an Add-in that prompts for X, Y, Color etc. variables and applies the favored customizations. In other words, it works as a front-end to getting the inputs and applies the customizations.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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 ), Color (:age) ), 
            Elements( Bar( X, Y , Legend(5), Error Interval ("Standard Deviation") ) )
       );
frame = Report( obj )[FrameBox( 1 )];  //get a handle for the graph FrameBox

seg = (frame &amp;lt;&amp;lt; XPath("//BarSeg"));    //get a handle for the bars


//--- can customize all at once ---/
seg &amp;lt;&amp;lt; {Error Bar Cap( "Tiny"), Line Color( "Medium Dark Gray"), Line Width( 2 ) } ;

//--- can customize (set properties) individually ---/

//seg &amp;lt;&amp;lt; Set Error Bar Cap( "Tiny");
//seg &amp;lt;&amp;lt; Set Line Color( "Medium Dark Gray");
//seg &amp;lt;&amp;lt; Set Line Width( 2 ) ;
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 26 Sep 2021 09:26:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/421099#M66985</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2021-09-26T09:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: setting Graph Builder error bar properties JMP Pro 15.2.1</title>
      <link>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/421985#M67094</link>
      <description>&lt;P&gt;gzmorgan0 Thank you for the reply. Scripting as in your example would certainly do the trick but I failed to mention the problem is with variables grouped on the upper x-axis, not lower. Normally, you can customize error bar features across groups on the lower x-axis via the customization menu. It appears that is what your script is calling for.&lt;/P&gt;</description>
      <pubDate>Wed, 29 Sep 2021 11:21:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/421985#M67094</guid>
      <dc:creator>Kip1</dc:creator>
      <dc:date>2021-09-29T11:21:31Z</dc:date>
    </item>
    <item>
      <title>Re: setting Graph Builder error bar properties JMP Pro 15.2.1</title>
      <link>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/723853#M90589</link>
      <description>&lt;P&gt;Black magic, and it worked! In JMP17.2 Pro. Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 12 Feb 2024 20:45:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/723853#M90589</guid>
      <dc:creator>DB1</dc:creator>
      <dc:date>2024-02-12T20:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: setting Graph Builder error bar properties JMP Pro 15.2.1</title>
      <link>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/753631#M93547</link>
      <description>&lt;P&gt;"black magic" - or right click/customize:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1715495737468.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/64118i10112DDABEF7816E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1715495737468.png" alt="hogi_0-1715495737468.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 12 May 2024 06:35:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/setting-Graph-Builder-error-bar-properties-JMP-Pro-15-2-1/m-p/753631#M93547</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-05-12T06:35:54Z</dc:date>
    </item>
  </channel>
</rss>

