<?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: How to set different Spec lines for different projects in the graph builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/761830#M93969</link>
    <description>&lt;P&gt;How to change the line width?&lt;/P&gt;&lt;PRE class="language-jsl"&gt;&lt;CODE&gt;Line( [-.5 .5], [-45 -45] );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 May 2024 03:49:29 GMT</pubDate>
    <dc:creator>CompleteLeopard</dc:creator>
    <dc:date>2024-05-28T03:49:29Z</dc:date>
    <item>
      <title>How to set different Spec lines for different projects in the graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/499785#M73505</link>
      <description>&lt;P&gt;How to set different Spec lines for different projects in the graph builder， like this.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="AlphaColt356_0-1654309136829.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42962i2B1E3ADE6E1C7288/image-size/medium?v=v2&amp;amp;px=400" role="button" title="AlphaColt356_0-1654309136829.png" alt="AlphaColt356_0-1654309136829.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 20:50:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/499785#M73505</guid>
      <dc:creator>AlphaColt356</dc:creator>
      <dc:date>2023-06-10T20:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to set different Spec lines for different projects in the graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/499817#M73506</link>
      <description>&lt;P&gt;Here is a partial script to solve what you want.&amp;nbsp; I have only displayed 2 of the Spec limits lines, but the addition of the other lines is just a repeat of the JSL, just changing the coordinates and text.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1654313199591.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42963iA0578DF5F4AAA446/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1654313199591.png" alt="txnelson_0-1654313199591.png" /&gt;&lt;/span&gt;&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 = Current Data Table();
gb = Graph Builder(
	Size( 528, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :Label ), Y( :Data ), Color( :Label ) ),
	Elements( Box Plot( X, Y, Legend( 11 ) ), Contour( X, Y, Legend( 12 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"Data",
			ScaleBox,
			{Format( "Best", 12 ), Min( -86.4411315121441 ), Max( 58.2086540147458 ), Inc( 20 ),
			Minor Ticks( 1 )}
		)
	)
);
Report( gb )[framebox( 1 )] &amp;lt;&amp;lt; add graphics script(
	Pen Color( "blue" );
	Line( [-.5 .5], [-45 -45] );
	Text( {-.45, -40, 0, -42}, "LCL -45" );
	Line( [.5 1.5], [-50 -50] );
	Text( {.55, -45, 1, -47}, "LCL 50" );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 04 Jun 2022 03:27:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/499817#M73506</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2022-06-04T03:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to set different Spec lines for different projects in the graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/499851#M73508</link>
      <description>&lt;P&gt;If you can add limits to your data this way:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_4-1654326223888.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42968i0ED94955A900A5D1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_4-1654326223888.png" alt="jthi_4-1654326223888.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;you can add second graph to graph builder. If you want labels I think float bar chart is easiest (but try other visualizations also!). Building these can be sometimes a bit annoying, but the important parts are highlighted here:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_3-1654326175617.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/42967iF99654929F8498BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_3-1654326175617.png" alt="jthi_3-1654326175617.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Building the graph this way does have its benefits especially if you have local data filters&lt;/P&gt;</description>
      <pubDate>Sat, 04 Jun 2022 07:07:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/499851#M73508</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-06-04T07:07:08Z</dc:date>
    </item>
    <item>
      <title>Re: How to set different Spec lines for different projects in the graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/761830#M93969</link>
      <description>&lt;P&gt;How to change the line width?&lt;/P&gt;&lt;PRE class="language-jsl"&gt;&lt;CODE&gt;Line( [-.5 .5], [-45 -45] );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 May 2024 03:49:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-set-different-Spec-lines-for-different-projects-in-the/m-p/761830#M93969</guid>
      <dc:creator>CompleteLeopard</dc:creator>
      <dc:date>2024-05-28T03:49:29Z</dc:date>
    </item>
  </channel>
</rss>

