<?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: Graph builder marker size in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graph-builder-marker-size/m-p/642640#M83940</link>
    <description>&lt;P&gt;And if you have multiple FrameBoxes in the Graph, you have to use&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;'s approach and send the command to all FrameBoxes:&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.jmp" );
gb = dt &amp;lt;&amp;lt; Graph Builder(
	Variables( X( :height ), Y( :weight ), Group X( :sex ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) )
);
	
fbs = gb &amp;lt;&amp;lt; xpath("//FrameBox");

fbs &amp;lt;&amp;lt; {Marker Size(5), Marker Drawing Mode("Normal")}&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 15 Jun 2023 05:59:03 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-06-15T05:59:03Z</dc:date>
    <item>
      <title>Graph builder marker size</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-marker-size/m-p/642588#M83938</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is it possible to have a non specific (item ID) marker size customization in Graph Builder?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have this piece of code as an example but I need the Item ID not to be specified only to the given items on the script.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="UserID16644_1-1686797766228.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53866iA23DE24E8C691E20/image-size/medium?v=v2&amp;amp;px=400" role="button" title="UserID16644_1-1686797766228.png" alt="UserID16644_1-1686797766228.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 02:56:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-marker-size/m-p/642588#M83938</guid>
      <dc:creator>UserID16644</dc:creator>
      <dc:date>2023-06-15T02:56:41Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder marker size</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-marker-size/m-p/642637#M83939</link>
      <description>&lt;P&gt;If you want the marker size to affect all the items you can most likely set the marker from frame box instead of legend&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1686806937205.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53873iE82D0FB91EA26543/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1686806937205.png" alt="jthi_1-1686806937205.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Variables(X(:weight), Y(:height), Overlay(:sex)),
	Elements(Points(X, Y, Legend(3))),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size(5), Marker Drawing Mode("Normal")}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;If you want different marker sizes, then I think you might have to build and expression which would dynamically updated depending on how you want to set the markers&lt;/P&gt;</description>
      <pubDate>Thu, 15 Jun 2023 05:31:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-marker-size/m-p/642637#M83939</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2023-06-15T05:31:02Z</dc:date>
    </item>
    <item>
      <title>Re: Graph builder marker size</title>
      <link>https://community.jmp.com/t5/Discussions/Graph-builder-marker-size/m-p/642640#M83940</link>
      <description>&lt;P&gt;And if you have multiple FrameBoxes in the Graph, you have to use&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;'s approach and send the command to all FrameBoxes:&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.jmp" );
gb = dt &amp;lt;&amp;lt; Graph Builder(
	Variables( X( :height ), Y( :weight ), Group X( :sex ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) )
);
	
fbs = gb &amp;lt;&amp;lt; xpath("//FrameBox");

fbs &amp;lt;&amp;lt; {Marker Size(5), Marker Drawing Mode("Normal")}&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 15 Jun 2023 05:59:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graph-builder-marker-size/m-p/642640#M83940</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-15T05:59:03Z</dc:date>
    </item>
  </channel>
</rss>

