<?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 overlay a circle on existing graph builder plot in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643937#M84081</link>
    <description>&lt;P&gt;The oval may be better than the circle, see comments in &lt;LI-MESSAGE title="How Do You Draw a Circle?" uid="466661" url="https://community.jmp.com/t5/Uncharted/How-Do-You-Draw-a-Circle/m-p/466661#U466661" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt; (just before the giant hand) showing how the oval might not be a circle visually but matches the data space when the axes are not the same scale.&lt;/P&gt;</description>
    <pubDate>Tue, 20 Jun 2023 00:42:57 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2023-06-20T00:42:57Z</dc:date>
    <item>
      <title>How To overlay a circle on existing graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643875#M84068</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm taking a baby step of JSL. I'd like to overlay a 150mm radius circle on the below image, which is a graph builder generated defect map example of silicon wafer. I just figured out "Circle({0,0}, 150 )" command, but it doesn't seem to work when I implemented the command in JSL script of the plot.&amp;nbsp;&amp;nbsp;&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="Albatross_1-1687184041551.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53959iA612A4B535725530/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Albatross_1-1687184041551.png" alt="Albatross_1-1687184041551.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Could anyone help how to add a circle on it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 14:18:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643875#M84068</guid>
      <dc:creator>Albatross</dc:creator>
      <dc:date>2023-06-19T14:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: How To overlay a circle on existing graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643883#M84069</link>
      <description>&lt;P&gt;You could use &lt;STRONG&gt;Customize&lt;/STRONG&gt; from the right click menu and add 2&lt;STRONG&gt; Y Function&lt;/STRONG&gt; scripts to draw the 2 parts of the circles:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1687184938335.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53960i5FD6DE6DA05E98BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1687184938335.png" alt="hogi_0-1687184938335.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;Y Function( 150 * (Cos( ArcSine( x / 150 ) )), x );
Y Function( -150 * (Cos( ArcSine( x / 150 ) )), x );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 14:30:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643883#M84069</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-06-19T14:30:23Z</dc:date>
    </item>
    <item>
      <title>Re: How To overlay a circle on existing graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643897#M84070</link>
      <description>&lt;P&gt;I do this in Graph Builder:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Oval( -150, 150, 150, -150 );&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="matth1_0-1687187482271.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/53961iF89C26249AE4BB4D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="matth1_0-1687187482271.png" alt="matth1_0-1687187482271.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 15:13:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643897#M84070</guid>
      <dc:creator>matth1</dc:creator>
      <dc:date>2023-06-19T15:13:04Z</dc:date>
    </item>
    <item>
      <title>Re: How To overlay a circle on existing graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643906#M84074</link>
      <description>&lt;P&gt;Given the coordinates of -15 to 150, you are drawing a 300mm wafer&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 17:33:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643906#M84074</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2023-06-19T17:33:18Z</dc:date>
    </item>
    <item>
      <title>Re: How To overlay a circle on existing graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643937#M84081</link>
      <description>&lt;P&gt;The oval may be better than the circle, see comments in &lt;LI-MESSAGE title="How Do You Draw a Circle?" uid="466661" url="https://community.jmp.com/t5/Uncharted/How-Do-You-Draw-a-Circle/m-p/466661#U466661" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt; (just before the giant hand) showing how the oval might not be a circle visually but matches the data space when the axes are not the same scale.&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 00:42:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643937#M84081</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2023-06-20T00:42:57Z</dc:date>
    </item>
    <item>
      <title>Re: How To overlay a circle on existing graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643972#M84085</link>
      <description>&lt;P&gt;Thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt;&amp;nbsp;.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;So, while "missing the forest", I was lucky not to play "candidate 6a".&lt;BR /&gt;I definitely would have got stuck after finding "circle" ;)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Feb 2024 19:15:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/643972#M84085</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-27T19:15:50Z</dc:date>
    </item>
    <item>
      <title>Re: How To overlay a circle on existing graph builder plot</title>
      <link>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/644024#M84094</link>
      <description>&lt;P&gt;Nice outside-of-the-box approach I had not considered!&lt;/P&gt;</description>
      <pubDate>Tue, 20 Jun 2023 12:52:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-To-overlay-a-circle-on-existing-graph-builder-plot/m-p/644024#M84094</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2023-06-20T12:52:03Z</dc:date>
    </item>
  </channel>
</rss>

