<?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: Transparency for Overlay Group? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Transparency-for-Overlay-Group/m-p/867569#M103037</link>
    <description>&lt;P&gt;nice workaround from JMP support: TS-00198153&amp;nbsp;&lt;BR /&gt;use row states, they don't interfere with the possibility to control the appearance for different overlay groups.&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="hogi_0-1744313219918.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74746i8390D01F9696E53F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1744313219918.png" alt="hogi_0-1744313219918.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
// Color or mark by column
Data Table( "Big Class Families" ) &amp;lt;&amp;lt; Color or Mark by Column(
	:height,
	Color Theme( "Spectral" ),
	Marker( 0 ),
	Continuous Scale( 1 )
);
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 437, 453 ),
	Show Control Panel( 0 ),
	Variables( X( :age ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 6 ) ) ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				6,
				Properties(
					0,
					{Line Color( 0 ), Marker( "FilledCircle" ), Transparency( 0.2 )},
					Item ID( "F", 1 )
				),
				Properties(
					1,
					{Line Color( 0 ), Marker( "FilledSquare" )},
					Item ID( "M", 1 )
				)
			)}
		),
		Dispatch( {}, "Graph Builder", FrameBox,
			{Marker Size( 5 ), Marker Drawing Mode( "Normal" ),
			Marker Selection Mode( "Selected Outlined" )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 10 Apr 2025 19:29:18 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-04-10T19:29:18Z</dc:date>
    <item>
      <title>Transparency for Overlay Group?</title>
      <link>https://community.jmp.com/t5/Discussions/Transparency-for-Overlay-Group/m-p/867445#M103013</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I want to reduce the visibility of a specific Overlay Group in Graph Builder. This can be done via&amp;nbsp; the Transparency option:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1744258683385.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74725i5BF52E9024786C76/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1744258683385.png" alt="hogi_0-1744258683385.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_3-1744262425190.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74729iD103854F6636A041/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_3-1744262425190.png" alt="hogi_3-1744262425190.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In my next example, I use the column height&amp;nbsp; to specify the color of the data points.&lt;/P&gt;
&lt;P&gt;I can adjust the Transparency via the Female legend entry - this transparency doesn't have any&amp;nbsp; effect. And I can adjust Transparency via the right click menu of the &lt;STRONG&gt;gradient&lt;/STRONG&gt; - but this will affect both Overlay groups ...&lt;BR /&gt;How can I adjust the transparency of the Female Overlay group?&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="hogi_2-1744262376277.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74728i596BC0A4FF55363F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1744262376277.png" alt="hogi_2-1744262376277.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&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);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
dt &amp;lt;&amp;lt; Graph Builder(
	Variables(
		X( :age ),
		Y( :weight ),
		Overlay( :sex, Overlay Encoding( "Style" ) ),
		Color( :height )
	),
	Elements( Points( X, Y, Legend( 10 ) ) ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				10,
				Properties(
					1,
					{Marker( "FilledCircle" ), Marker Size( 6 ), Transparency( 0.5 )},
					Item ID( "F", 1 )
				),
				Properties(
					2,
					{Marker( "FilledSquare" ), Marker Size( 6 )},
					Item ID( "M", 1 )
				)
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 10 Apr 2025 05:23:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Transparency-for-Overlay-Group/m-p/867445#M103013</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-04-10T05:23:21Z</dc:date>
    </item>
    <item>
      <title>Re: Transparency for Overlay Group?</title>
      <link>https://community.jmp.com/t5/Discussions/Transparency-for-Overlay-Group/m-p/867569#M103037</link>
      <description>&lt;P&gt;nice workaround from JMP support: TS-00198153&amp;nbsp;&lt;BR /&gt;use row states, they don't interfere with the possibility to control the appearance for different overlay groups.&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="hogi_0-1744313219918.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/74746i8390D01F9696E53F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1744313219918.png" alt="hogi_0-1744313219918.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
// Color or mark by column
Data Table( "Big Class Families" ) &amp;lt;&amp;lt; Color or Mark by Column(
	:height,
	Color Theme( "Spectral" ),
	Marker( 0 ),
	Continuous Scale( 1 )
);
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 437, 453 ),
	Show Control Panel( 0 ),
	Variables( X( :age ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 6 ) ) ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				6,
				Properties(
					0,
					{Line Color( 0 ), Marker( "FilledCircle" ), Transparency( 0.2 )},
					Item ID( "F", 1 )
				),
				Properties(
					1,
					{Line Color( 0 ), Marker( "FilledSquare" )},
					Item ID( "M", 1 )
				)
			)}
		),
		Dispatch( {}, "Graph Builder", FrameBox,
			{Marker Size( 5 ), Marker Drawing Mode( "Normal" ),
			Marker Selection Mode( "Selected Outlined" )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 10 Apr 2025 19:29:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Transparency-for-Overlay-Group/m-p/867569#M103037</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-04-10T19:29:18Z</dc:date>
    </item>
  </channel>
</rss>

