<?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: Lock Graph Builder Annotations in place in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84738#M37924</link>
    <description>&lt;P&gt;You can easily add notations to your graph that will not move, by using the "Customize" capability. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="customize.PNG" style="width: 950px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14650iD272B10BEFE6FC24/image-size/large?v=v2&amp;amp;px=999" role="button" title="customize.PNG" alt="customize.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The notation was added interactively.&amp;nbsp; Below is the resulting script for the chart....&lt;/P&gt;
&lt;P&gt;Note:&amp;nbsp; The Big Class sample data table was used for my example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Graph Builder(
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"weight",
			ScaleBox,
			{Min( 60 ), Max( 182.231404958678 ), Inc( 20 ), Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"height",
			ScaleBox,
			{Min( 50 ), Max( 75.140306122449 ), Inc( 5 ), Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "Script" ),
				myList = {};
				Insert Into( myList, X Origin() + .2 * X Range() );
				Insert Into( myLIst, Y Origin() + .8 * Y Range() );
				Text( Center Justified, myList, "Here is a note" );
			), Grid Line Order( 1 ), Reference Line Order( 3 )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 29 Nov 2018 18:26:23 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2018-11-29T18:26:23Z</dc:date>
    <item>
      <title>Lock Graph Builder Annotations in place</title>
      <link>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84736#M37923</link>
      <description>&lt;P&gt;In Graph Builder charts I frequently place text box annotations on top of the charts.&amp;nbsp; When I add more charts, change the scale, or resize anything, I notice the annotation moves around and resizes itself automatically to try to stay where it thinks I want it to be.&amp;nbsp; But I find that the annotation never ends up where I want it, so I have to go move it again manually anyway.&amp;nbsp; Also, when the annotation text box resizes itself, it sometimes shrinks to a tiny sliver.&amp;nbsp; The text is still visible, but it is impossible to click on it to resize it or delete it.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I think it would be a lot more user-friendly if these text boxes were less "smart".&amp;nbsp; I'd rather just lock it in place so it does not ever move or resize itself, and if I change something I will move it manually.&amp;nbsp; I could not find this option in the preferences.&amp;nbsp;&amp;nbsp;Are there any configurable options for shapes and annotations?&amp;nbsp; Is there a way to lock them in place, or turn off the "smart resizing" features?&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 17:18:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84736#M37923</guid>
      <dc:creator>Chris_Rodrigues</dc:creator>
      <dc:date>2018-11-29T17:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Lock Graph Builder Annotations in place</title>
      <link>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84738#M37924</link>
      <description>&lt;P&gt;You can easily add notations to your graph that will not move, by using the "Customize" capability. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="customize.PNG" style="width: 950px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/14650iD272B10BEFE6FC24/image-size/large?v=v2&amp;amp;px=999" role="button" title="customize.PNG" alt="customize.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The notation was added interactively.&amp;nbsp; Below is the resulting script for the chart....&lt;/P&gt;
&lt;P&gt;Note:&amp;nbsp; The Big Class sample data table was used for my example&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;
Graph Builder(
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 3 ) ), Smoother( X, Y, Legend( 4 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"weight",
			ScaleBox,
			{Min( 60 ), Max( 182.231404958678 ), Inc( 20 ), Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"height",
			ScaleBox,
			{Min( 50 ), Max( 75.140306122449 ), Inc( 5 ), Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "Script" ),
				myList = {};
				Insert Into( myList, X Origin() + .2 * X Range() );
				Insert Into( myLIst, Y Origin() + .8 * Y Range() );
				Text( Center Justified, myList, "Here is a note" );
			), Grid Line Order( 1 ), Reference Line Order( 3 )}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 29 Nov 2018 18:26:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84738#M37924</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-11-29T18:26:23Z</dc:date>
    </item>
    <item>
      <title>Re: Lock Graph Builder Annotations in place</title>
      <link>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84744#M37928</link>
      <description>&lt;P&gt;I'm not sure I'd call it "easily".&amp;nbsp; It requires scripting and it takes some trial and error to place the notes accurately, since you can't do it&amp;nbsp;using the GUI.&amp;nbsp; But this meets my needs.&amp;nbsp; Thank you!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I still think the Text Box feature needs to be fixed so it never allows the text box&amp;nbsp;to be shrunk to zero width or height.&amp;nbsp; I would consider this a bug.&amp;nbsp; After this happens it becomes impossible to change or remove the text boxes using the GUI; you basically have to start over and rebuild the graph.&amp;nbsp; Of course, you always can "save script to data table" and then edit the script to remove the offending text boxes, but this is also not an "easy" fix.&amp;nbsp;&amp;nbsp;It's a bad enough problem that I will avoid using these text boxes entirely and go through the extra effort of using this Customize Graph JSL script to put these simple notes on my graphs.&amp;nbsp; Now that I know how to do it, it's not that big of a deal, but this is going to be a hard one to explain to any new users I am training on how to use JMP.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 19:04:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84744#M37928</guid>
      <dc:creator>Chris_Rodrigues</dc:creator>
      <dc:date>2018-11-29T19:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: Lock Graph Builder Annotations in place</title>
      <link>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84747#M37930</link>
      <description>&lt;P&gt;You need to add your request for the enhancement to the JMP Wish List.&lt;/P&gt;</description>
      <pubDate>Thu, 29 Nov 2018 19:06:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Lock-Graph-Builder-Annotations-in-place/m-p/84747#M37930</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2018-11-29T19:06:37Z</dc:date>
    </item>
  </channel>
</rss>

