<?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 Shading graph area in multiple graphs simultaneously in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Shading-graph-area-in-multiple-graphs-simultaneously/m-p/350423#M60007</link>
    <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;In my work, we split the subject into multiple splits and check the variation of certain parameters in each split.&lt;/P&gt;&lt;P&gt;Let's say we have 100 parameters which are being measured and 8 splits are there. Through JMP analysis, we get 100 graphs (for 100 parameters) with split on the x-axis.&lt;/P&gt;&lt;P&gt;Now i want to shade a certain split in each graph. I checked various options but couldn't do them simultaneously.&lt;/P&gt;&lt;P&gt;Is there any way this operation can be performed?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Sun, 11 Jun 2023 11:10:08 GMT</pubDate>
    <dc:creator>Anup_Singh</dc:creator>
    <dc:date>2023-06-11T11:10:08Z</dc:date>
    <item>
      <title>Shading graph area in multiple graphs simultaneously</title>
      <link>https://community.jmp.com/t5/Discussions/Shading-graph-area-in-multiple-graphs-simultaneously/m-p/350423#M60007</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;In my work, we split the subject into multiple splits and check the variation of certain parameters in each split.&lt;/P&gt;&lt;P&gt;Let's say we have 100 parameters which are being measured and 8 splits are there. Through JMP analysis, we get 100 graphs (for 100 parameters) with split on the x-axis.&lt;/P&gt;&lt;P&gt;Now i want to shade a certain split in each graph. I checked various options but couldn't do them simultaneously.&lt;/P&gt;&lt;P&gt;Is there any way this operation can be performed?&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:10:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Shading-graph-area-in-multiple-graphs-simultaneously/m-p/350423#M60007</guid>
      <dc:creator>Anup_Singh</dc:creator>
      <dc:date>2023-06-11T11:10:08Z</dc:date>
    </item>
    <item>
      <title>Re: Shading graph area in multiple graphs simultaneously</title>
      <link>https://community.jmp.com/t5/Discussions/Shading-graph-area-in-multiple-graphs-simultaneously/m-p/350478#M60009</link>
      <description>&lt;P&gt;I am not sure if this is what you were talking about, Here is my guess as to what you want.&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="shade.PNG" style="width: 460px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/29514iFE58F166707B7B70/image-size/large?v=v2&amp;amp;px=999" role="button" title="shade.PNG" alt="shade.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/semiconductor capability.jmp" );

dt &amp;lt;&amp;lt; New Column( "Split", character, set each value( Char( Mod( :wafer, 5 ) + 1 ) ) );

colNames = dt &amp;lt;&amp;lt; get column names( continuous );

vc = Variability Chart( Y( Eval( colNames ) ), X( :split ), Std Dev Chart( 0 ) );

For( k = 1, k &amp;lt;= N Items( colNames ), k++,
	mymax = Report( vc[k] )[axisbox( 1 )] &amp;lt;&amp;lt; get max;
	mymin = Report( vc[k] )[axisbox( 1 )] &amp;lt;&amp;lt; get min;
	Eval(
		Substitute(
				Expr(
					Report( vc[k] )[framebox( 1 )] &amp;lt;&amp;lt; add graphics script(
						Transparency( .5 );
						Fill Color( "yellow" );
						Rect( 2, __Max__, 3, __Min__, fill = 1 );
					)
				),
			Expr( __max__ ), mymax,
			Expr( __min__ ), mymin
		)
	);
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 17 Jan 2021 21:03:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Shading-graph-area-in-multiple-graphs-simultaneously/m-p/350478#M60009</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-01-17T21:03:51Z</dc:date>
    </item>
  </channel>
</rss>

