<?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: Problems with drawing lines and arrows on graphs in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904236#M106318</link>
    <description>&lt;P&gt;Yes. I agree. But sometimes its still difficult to understand what is going on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, I replaced Position(1) with Position(2) thinking it would show a different quadrant of the graph. But... it did nothing. So the 1 in Position(1) is likely a boolean.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can find nothing on any of this either on line or in the scripting index or the online help. Maybe I'm just looking in the wrong place.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At any rate, thanks again.&lt;/P&gt;</description>
    <pubDate>Fri, 26 Sep 2025 20:34:38 GMT</pubDate>
    <dc:creator>scott1588</dc:creator>
    <dc:date>2025-09-26T20:34:38Z</dc:date>
    <item>
      <title>Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/903255#M106223</link>
      <description>&lt;P&gt;I'm trying some experiments to figure out how to draw lines and arrows on a graph in JSL. There is not much that has helped me in the Scripting Guide and I didn't see anything previously posted in the community. I have uploaded my JSL script and data table below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the data table, I have calculated the coordinates for a unit circle at 5 degree intervals. I plotted these with Graph Builder...&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="scott1588_0-1758696854623.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83334i2DEBFA701FAD909F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="scott1588_0-1758696854623.png" alt="scott1588_0-1758696854623.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;Initially, what I would like to do is script an arrow from the origin to each point. Here is the script I am using. I don't get any errors when I run it but it never draws the arrows. I have tried putting the FOR loop within the Graph Builder block as shown here and also outside the block. I can't seem to get either to work.&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 = "Circle Arrow Data";


Graph Builder(
	Size( 540, 540 ),
	Graph Spacing( 10 ),
	Spacing Borders( 1 ),
	Variables( X( :x coord ), Y( :y coord ) ),
	Elements( Points( X, Y, Legend( 3 ) ) ),
	For( i=0, i&amp;lt;360, i+=5,
		Arrow( {0,:x coord[i]}, {0, :y coord[i]})
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Ultimately, my goal is to only have the arrows appear when a row or rows are selected but obviously I need to get this working first. This is really about showing wind direction on a graph but I'm taking baby steps in understanding how to draw on graphs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks in advance for any guidance provided.&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;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 07:01:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/903255#M106223</guid>
      <dc:creator>scott1588</dc:creator>
      <dc:date>2025-09-24T07:01:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/903277#M106226</link>
      <description>&lt;P&gt;excellent timing : )&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;new in JMP19:&lt;BR /&gt;&lt;LI-MESSAGE title="Can Vector Field Charts Help Explain Performance in the Last Super Bowl?" uid="899290" url="https://community.jmp.com/t5/Scott-Wise-s-Blog/Can-Vector-Field-Charts-Help-Explain-Performance-in-the-Last/m-p/899290#U899290" 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;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1758702668096.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83343i91E7F7B31D4E6EFE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1758702668096.png" alt="hogi_0-1758702668096.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;
New Column( "x_0",	Formula( 0 ));
New Column( "y_0",	Formula( 0 ));

Graph Builder(
	Variables( X( :x_0 ), X( :x coord, Position( 1 ) ), Y( :x_0 ), Y( :y coord, Position( 1 ) ) ),
	Elements(
		Line(
			X( 1 ),	X( 2 ),
			Y( 1 ),	Y( 2 ),
			Ordering( "Within Row" ),
			Connection( "Arrow" )
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 19:54:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/903277#M106226</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-09-24T19:54:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904050#M106286</link>
      <description>&lt;P&gt;Hey&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;thanks for the script. It works great.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'm trying to understand it though... so a couple of questions.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) What does the Position parameter do?&lt;/P&gt;
&lt;P&gt;2) Where do the 1 and 2 come from in the X and Y arguments?&lt;/P&gt;
&lt;P&gt;3) What does the Ordering ("Within Row") do?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There seems to be very incomplete documentation on these functions in the scripting help and scripting index.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, thanks.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 21:29:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904050#M106286</guid>
      <dc:creator>scott1588</dc:creator>
      <dc:date>2025-09-25T21:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904061#M106288</link>
      <description>&lt;P&gt;I agree, the scripting index isn't as good as the ones in other programs like Mathematica or Matlab, or the huge online documentation for Python and C++.There are some activities to improve the situation:&amp;nbsp;&lt;LI-MESSAGE title="Comprehensive scripting index" uid="244387" url="https://community.jmp.com/t5/JMP-Wish-List/Comprehensive-scripting-index/m-p/244387#U244387" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;On the other hand, there are many things you can &lt;STRONG&gt;learn by doing&lt;/STRONG&gt;. Just open Graph Builder and create your graph using the drag-and-drop feature. It just takes some seconds - and optimizing the plot takes another few seconds. Then "Save Script to data table" and&amp;nbsp;compare what you did with what you find in the code.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6380129353112w664h540r440" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6380129353112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6380129353112w664h540r440');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6380129353112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;FONT face="courier new,courier"&gt;row order&lt;/FONT&gt; is a new feature in JMP19. It can be used when sets of coordinates are used for X &amp;amp; Y.&lt;BR /&gt;and it's the new default option for this case&lt;BR /&gt;[notice: the graph doesn't change when I activate the option]&lt;/LI&gt;
&lt;LI&gt;let's drag the coordinates into the plot, first x_0 and y_0&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Variables( X( :x_0 ), Y( :y_0 ) ),&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;then x_coord / y_coord&amp;nbsp;&lt;BR /&gt;&lt;LI-CODE lang="jsl"&gt;Variables( X( :x_0 ), X( :x coord, Position( 1 ) ), Y( :x_0 ), Y( :y coord, Position( 1 ) ) )​&lt;/LI-CODE&gt;&lt;/LI&gt;
&lt;LI&gt;now, we just have to activate the line plot. By default, it uses all available coordinated:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;X(1)&lt;/FONT&gt; is &lt;FONT face="courier new,courier"&gt;x_0&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;X(2)&lt;/FONT&gt; is &lt;FONT face="courier new,courier"&gt;x_coord&lt;/FONT&gt;&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	Elements(
		Line(
			X( 1 ),	X( 2 ),
			Y( 1 ),	Y( 2 ),
		)
	)&lt;/CODE&gt;&lt;/PRE&gt;
we can also deactivate variables via:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1758857327909.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83545iAD9368FC603FDE4A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1758857327909.png" alt="hogi_1-1758857327909.png" /&gt;&lt;/span&gt;
&lt;P&gt;Then the code will reduce to:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	Elements(
		Line( X( 1 ), Y( 1 ),&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Plots with lines and arrows connecting multiple coordinates: A great improvement in JMP19.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Plots with lines and arrows connecting multiple coordinates. A great improvement in JMP19!&lt;BR /&gt;&lt;BR /&gt;Just imagine that instead of arrows, you want to plot three sets of coordinates (points) within the same plot. Then you have to add three point plots to the graph and disable the 'other' coordinates three times. It works, but it's messy!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1758858042334.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83546iE9EF772AF650A6BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1758858042334.png" alt="hogi_2-1758858042334.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Just imagine if you wanted to plot ten sets of coordinates!&lt;BR /&gt;A logical next step would be to copy the new 'within row' functionality to point plots.&lt;BR /&gt;&lt;LI-MESSAGE title="Multiple x and y data sets plotted as &amp;amp;quot;pairs&amp;amp;quot; without having to stack columns" uid="696280" url="https://community.jmp.com/t5/JMP-Wish-List/Multiple-x-and-y-data-sets-plotted-as-quot-pairs-quot-without/m-p/696280#U696280" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;BR /&gt;I really hope this feature gets implemented soon!&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 03:51:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904061#M106288</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-09-26T03:51:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904228#M106314</link>
      <description>&lt;P&gt;So the 1 and 2 arguments in the X and Y functions are just the order in which they are listed in the variables function? Am I understanding this correctly?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then what does the Position(1) do in the Variables function? It would seem like this would make the :x coord and y: coord 1 not the x_0 y_0.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Sorry. This is just a bit confusing for me.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 20:05:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904228#M106314</guid>
      <dc:creator>scott1588</dc:creator>
      <dc:date>2025-09-26T20:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904233#M106316</link>
      <description>&lt;P&gt;Ahhh... So I took the position(1) out and ran the script. This is what I got...&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="scott1588_0-1758917718343.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/83629i4DE02298EA09BAEB/image-size/medium?v=v2&amp;amp;px=400" role="button" title="scott1588_0-1758917718343.png" alt="scott1588_0-1758917718343.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;So the way the variables are added would result in four separate graphs. The Position command selects which of the graphs to display.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think that's right...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I'll play around with this some more. This would make a great tutorial video at some point,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for all your help on this&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 20:17:59 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904233#M106316</guid>
      <dc:creator>scott1588</dc:creator>
      <dc:date>2025-09-26T20:17:59Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904235#M106317</link>
      <description>&lt;P&gt;: )&lt;BR /&gt;As promised, it's really easy to learn from the scripts "by doing"!&lt;BR /&gt;&lt;BR /&gt;Besides that, there's a good chance that &lt;EM&gt;&lt;STRONG&gt;this&lt;/STRONG&gt; &lt;/EM&gt;way the learning will stick much better.&lt;BR /&gt;&lt;BR /&gt;Yes, you can add the &lt;FONT face="courier new,courier"&gt;Position(1)&lt;/FONT&gt; also to the first entry. But that's the default.&lt;BR /&gt;So, without the &lt;FONT face="courier new,courier"&gt;Position(1)&lt;/FONT&gt; for the second argument [to force the value to be added to the first "subplot"] it would be &lt;FONT face="courier new,courier"&gt;Position(2)&lt;/FONT&gt;:)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 20:31:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904235#M106317</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-09-26T20:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904236#M106318</link>
      <description>&lt;P&gt;Yes. I agree. But sometimes its still difficult to understand what is going on.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For example, I replaced Position(1) with Position(2) thinking it would show a different quadrant of the graph. But... it did nothing. So the 1 in Position(1) is likely a boolean.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can find nothing on any of this either on line or in the scripting index or the online help. Maybe I'm just looking in the wrong place.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;At any rate, thanks again.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Sep 2025 20:34:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904236#M106318</guid>
      <dc:creator>scott1588</dc:creator>
      <dc:date>2025-09-26T20:34:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problems with drawing lines and arrows on graphs</title>
      <link>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904241#M106321</link>
      <description>&lt;P&gt;Instead of trying to write the code and checking how it works ...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Try the inverse approach:&lt;BR /&gt;&lt;BR /&gt;After creating a complicated plot in Graph Builder, inspect the code and draw conclusions:&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" );
Graph Builder(
	Variables(
		X( :height ),
		Y( :name ),
		Y( :weight ),
		Y( :height, Position( 2 ) ),
		Y( :age ),
		Overlay( :sex )
	),
	Elements( Position( 1, 1 ), Points( X, Y ) ),
	Elements(
		Position( 1, 2 ),
		Points( X, Y( 1 ), Y( 2 ), Legend( 1 ) ),
		Smoother( X, Y( 1 ), Y( 2 ), Legend( 2 ) )
	),
	Elements( Position( 1, 3 ), Points( X, Y ) )
);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;if there are just 2 items, there is no difference between adding a &lt;EM&gt;second&lt;/EM&gt; entry - and adding a second entry&lt;STRONG&gt;&lt;EM&gt; as second&lt;/EM&gt;&lt;/STRONG&gt;.&lt;BR /&gt;Position(2) makes sense for three and more items. By default, the third item is added as third. If you want to do something else, you can add it at position(2).&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 27 Sep 2025 15:03:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Problems-with-drawing-lines-and-arrows-on-graphs/m-p/904241#M106321</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-09-27T15:03:41Z</dc:date>
    </item>
  </channel>
</rss>

