<?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: Légende sur control chart avec JMP 16 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/L%C3%A9gende-sur-control-chart-avec-JMP-16/m-p/449681#M69659</link>
    <description>&lt;P&gt;Hi Veronique!&lt;/P&gt;
&lt;P&gt;I wish you an Happy New Year!&lt;/P&gt;
&lt;P&gt;Regarding your question, you can use the legend box as described in this workaround :&amp;nbsp; &lt;A href="https://community.jmp.com/t5/Discussions/add-Row-Legend-to-Control-Chart-Builder-output/m-p/16288" target="_blank"&gt;Solved: add Row Legend to Control Chart Builder output? - JMP User Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following JSL should give what you expect:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Semiconductor Capability.jmp" );

// Create the color pattern and legend window
TheLegend = dt &amp;lt;&amp;lt; color or mark by column( :Lot_id, make window with legend );

// Create the window with the V List Box in it

NW = New Window( "legend example", myVLB = H List Box( Control Chart Builder(
	Size( 716, 456 ),
	Show Control Panel( 0 ),
	Variables( Y( :NPN1 ) ),
	Chart( Position( 1 ) ),
	SendToReport(
		Dispatch( {}, "NPN1 Limit Summaries", OutlineBox, {Close( 1 )} ),
		Dispatch(
			{"NPN1 Limit Summaries", "Process Capability Analysis", "Histogram"},
			"Process Capability Analysis Histogram",
			FrameBox,
			{Frame Size( 320, 21 )}
		)
	)
)));

// Append the legend window to the VLB
myVLB &amp;lt;&amp;lt; append( TheLegend );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope it will be helpful!&lt;/P&gt;
&lt;P&gt;Florence&lt;/P&gt;</description>
    <pubDate>Fri, 07 Jan 2022 14:15:44 GMT</pubDate>
    <dc:creator>flo_kussener</dc:creator>
    <dc:date>2022-01-07T14:15:44Z</dc:date>
    <item>
      <title>Légende sur control chart avec JMP 16</title>
      <link>https://community.jmp.com/t5/Discussions/L%C3%A9gende-sur-control-chart-avec-JMP-16/m-p/449647#M69657</link>
      <description>&lt;P&gt;Bonjour à tous,&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/1184"&gt;@eromeu&lt;/a&gt;&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/795"&gt;@flo_kussener&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Comment afficher sur la control chart la légende sur JMP 16?&lt;/P&gt;&lt;P&gt;Je parvenais à le faire sur JMP 15 mais cela n'est plus possible sur JMP 16. Il est toujours possible de mettre une couleur ou une forme&amp;nbsp; via "color or mark by column" mais pas possible d'afficher la légende comme avant.&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="VroniqueB_1-1641561132957.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/38782i7C1BC7EEBC9BCE95/image-size/medium?v=v2&amp;amp;px=400" role="button" title="VroniqueB_1-1641561132957.png" alt="VroniqueB_1-1641561132957.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Merci infiniment pour votre aide et mes meilleurs vœux pour cette année 2022 :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:20:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/L%C3%A9gende-sur-control-chart-avec-JMP-16/m-p/449647#M69657</guid>
      <dc:creator>VéroniqueB</dc:creator>
      <dc:date>2023-06-11T11:20:49Z</dc:date>
    </item>
    <item>
      <title>Re: Légende sur control chart avec JMP 16</title>
      <link>https://community.jmp.com/t5/Discussions/L%C3%A9gende-sur-control-chart-avec-JMP-16/m-p/449681#M69659</link>
      <description>&lt;P&gt;Hi Veronique!&lt;/P&gt;
&lt;P&gt;I wish you an Happy New Year!&lt;/P&gt;
&lt;P&gt;Regarding your question, you can use the legend box as described in this workaround :&amp;nbsp; &lt;A href="https://community.jmp.com/t5/Discussions/add-Row-Legend-to-Control-Chart-Builder-output/m-p/16288" target="_blank"&gt;Solved: add Row Legend to Control Chart Builder output? - JMP User Community&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The following JSL should give what you expect:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Semiconductor Capability.jmp" );

// Create the color pattern and legend window
TheLegend = dt &amp;lt;&amp;lt; color or mark by column( :Lot_id, make window with legend );

// Create the window with the V List Box in it

NW = New Window( "legend example", myVLB = H List Box( Control Chart Builder(
	Size( 716, 456 ),
	Show Control Panel( 0 ),
	Variables( Y( :NPN1 ) ),
	Chart( Position( 1 ) ),
	SendToReport(
		Dispatch( {}, "NPN1 Limit Summaries", OutlineBox, {Close( 1 )} ),
		Dispatch(
			{"NPN1 Limit Summaries", "Process Capability Analysis", "Histogram"},
			"Process Capability Analysis Histogram",
			FrameBox,
			{Frame Size( 320, 21 )}
		)
	)
)));

// Append the legend window to the VLB
myVLB &amp;lt;&amp;lt; append( TheLegend );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Hope it will be helpful!&lt;/P&gt;
&lt;P&gt;Florence&lt;/P&gt;</description>
      <pubDate>Fri, 07 Jan 2022 14:15:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/L%C3%A9gende-sur-control-chart-avec-JMP-16/m-p/449681#M69659</guid>
      <dc:creator>flo_kussener</dc:creator>
      <dc:date>2022-01-07T14:15:44Z</dc:date>
    </item>
  </channel>
</rss>

