<?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 Hide Outline Box of Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41530#M24246</link>
    <description>&lt;P&gt;Just a brief follow up to Jim's reply...&lt;/P&gt;
&lt;P&gt;It isn't obvious when you look at a JMP window that the objects making up the window are nested. This branching structure leads to the name display tree. You can see the structure by right-clicking on the gray triangle to the left of the outline box and select Edit &amp;gt; Show Display Tree. You can delete any display box but it also removes any display boxes within.&lt;/P&gt;
&lt;P&gt;Besides journaling, you can clone a display box (and its contents) and then include them in another window. Note that the cloning generally loses the interactivity of the original object, like journaling, but this way is another alternative to consider for your purpose.&lt;/P&gt;</description>
    <pubDate>Thu, 06 Jul 2017 10:41:14 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2017-07-06T10:41:14Z</dc:date>
    <item>
      <title>How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41515#M24235</link>
      <description>&lt;P&gt;I would like to Hide the outline box that surrounds a graph builder.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I tried making it a report and deleting the Outline Box like&amp;nbsp;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ybuild = Graph Builder();&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;yrep = ybuild &amp;lt;&amp;lt; report;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;yrep[ OutlineBox(1) ] &amp;lt;&amp;lt; Delete;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The entire report just disappears.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Jul 2017 21:16:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41515#M24235</guid>
      <dc:creator>agonzales2021</dc:creator>
      <dc:date>2017-07-05T21:16:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41516#M24236</link>
      <description />
      <pubDate>Wed, 05 Jul 2017 21:16:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41516#M24236</guid>
      <dc:creator>agonzales2021</dc:creator>
      <dc:date>2017-07-05T21:16:41Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41517#M24237</link>
      <description>&lt;P&gt;The graphic from the Graph Builder is nested underneath the outline box, therefore, if you delete the outline box, it will delete the graph. &amp;nbsp;Therefore, you need to move the graphic. &amp;nbsp;Below is a simple example of how to do that&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 = Graph Builder(
	Size( 519, 448 ),
	Show Control Panel( 0 ),
	Variables( X( :age ), Y( :sex ) ),
	Elements( Points( X, Y, Legend( 5 ) ) )
);
Report( gb )[FrameBox( 1 )] &amp;lt;&amp;lt; journal;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 05 Jul 2017 21:18:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41517#M24237</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-07-05T21:18:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41518#M24238</link>
      <description>&lt;P&gt;Hi Jim, thanks for your timely reply.. I'm trying it and I'm not seeing any kind of change.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Y_Graph = expr(
//For(k=1,k&amp;lt;=N Items(Act),k++,(
k=7;
ybuild = Yield_Tab &amp;lt;&amp;lt; Graph Builder(
Size( 639, 378 ),
Show Control Panel( 0 ),
Show Footer( 0 ),
Lock Scales( 1 ),
Variables(
X( :Month ),
X( :WW ),
Y( Column(Act[k]) ),
Y( Column(Act[k]||" Weekly Target"), Position( 1 ) ),
Y( Column(Act[k]||" Month Target"), Position( 1 ) )
),
Relative Sizes( "X", [197 397] ),
Elements(
Position( 1, 1 ),
Line(
X,
Y( 1 ),
Y( 3 ),
Legend( 6 ),
Smoothness( 0.5 ),
Missing Values( "No Connection" )
),
Bar( X, Y( 1 ), Legend( 12 ), Label( "Label by Value" ) ),
Points(
X,
Y( 1 ),
Y( 3 ),
Legend( 16 ),
Jitter( 0 ),
Summary Statistic( "Mean" )
)
),
Elements(
Position( 2, 1 ),
Line( X, Y( 1 ), Y( 2 ), Legend( 7 ), Missing Values( "No Connection" ) ),
Bar( X, Y( 1 ), Legend( 13 ), Label( "Label by Value" ) ),
Points(
X,
Y( 1 ),
Y( 2 ),
Legend( 17 ),
Jitter( 0 ),
Summary Statistic( "Mean" )
)
),
SendToReport(
Dispatch(
{},
"Month",
ScaleBox
),
Dispatch(
{},
"WW",
ScaleBox
),
Dispatch(
{},
Act[k],
ScaleBox,
{Min( eval(minl[k]) ), Max( eval(maxl[k]) ), Inc( 5 ), Minor Ticks( 1 ),
Label Row( {Show Major Grid( 1 ), Show Minor Grid( 1 )} )}
),
Dispatch(
{},
"400",
ScaleBox,
{Legend Model(
6,
Level Name( 0, "Yield" ),
Level Name( 1, "Ultimate Yield" ),
Properties(
1,
{Line Color( 20 ), Line Style( "Dotted" ),
gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
)
), Legend Model(
12,
Properties(
0,
{Fill Color( 2 ), Transparency( 0 ),
gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
)
), Legend Model(
16,
Base( 0, 0, 0 ),
Base( 1, 0, 0 ),
Properties(
0,
{Line Color( 0 ), gradient(
{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
)}
),
Properties(
1,
{Line Color( 0 ), gradient(
{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
)}
)
), Legend Model(
7,
Base( 0, 0, 0 ),
Properties(
0,
{Line Color( 21 ), gradient(
{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
)}
),
Properties(
1,
{Line Color( 20 ), Line Style( "Dotted" ),
gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
)
), Legend Model(
13,
Properties(
0,
{Fill Color( 2 ), Transparency( 0 ),
gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
)
), Legend Model(
17,
Base( 0, 0, 0 ),
Base( 1, 0, 1 ),
Properties(
0,
{Line Color( 0 ), gradient(
{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
)}
),
Properties(
1,
{Line Color( 0 ), gradient(
{Scale Values( [0 1] ), N Labels( 6 )}
)}
)
)}
),
Dispatch( {}, "graph title", TextEditBox, {Set Text( Top_products[x]||" "||Act[k] )} ),
Dispatch( {}, "Y title", TextEditBox, {Set Text( Act[k] )} ),
Dispatch( {}, "X 1 title", TextEditBox, {Set Text( "Work Week" )} ),
Dispatch(
{},
"400",
LegendBox,
{Set Title( "" ), Legend Position(
{6, [0, 1], 12, [-1], 16, [-1, -1], 7, [-1, -1], 13, [-1], 17, [-1,
-1]}
), Position( {0, 1, -1, -1, -1, -1, -1, -1, -1, -1} )}
)
)
);
Report( ybuild )[FrameBox( 1 )] &amp;lt;&amp;lt; journal;
);//));
/ New Window( "Yield Dashboard",
Lineup Box(NCol(2), Y_Graph );
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 01:47:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41518#M24238</guid>
      <dc:creator>agonzales2021</dc:creator>
      <dc:date>2017-12-20T01:47:53Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41530#M24246</link>
      <description>&lt;P&gt;Just a brief follow up to Jim's reply...&lt;/P&gt;
&lt;P&gt;It isn't obvious when you look at a JMP window that the objects making up the window are nested. This branching structure leads to the name display tree. You can see the structure by right-clicking on the gray triangle to the left of the outline box and select Edit &amp;gt; Show Display Tree. You can delete any display box but it also removes any display boxes within.&lt;/P&gt;
&lt;P&gt;Besides journaling, you can clone a display box (and its contents) and then include them in another window. Note that the cloning generally loses the interactivity of the original object, like journaling, but this way is another alternative to consider for your purpose.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 10:41:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41530#M24246</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2017-07-06T10:41:14Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41531#M24247</link>
      <description>&lt;P&gt;This script includes a lot of details that get in the way of testing a solution. I suggest you test&amp;nbsp;your scheme to remove the outline box to work first with a simple example, then apply it to the real chart.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 10:44:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41531#M24247</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2017-07-06T10:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41551#M24259</link>
      <description>&lt;P&gt;1. You need to read the Scripting Guide so that you understand how the Display Tree Structures work, which will allow you to interpret what the sample code I provided is doing.&lt;/P&gt;
&lt;P&gt;2. &amp;nbsp;Below is a modification to the code that you provided. &amp;nbsp;In your example, what should have happened, is that a separate window should have appeared with the framebox from the Graph Builder in it, sans the outline box. &amp;nbsp;The new code places that frame box into the new window that you are creating.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Y_Graph = Expr(
//For(k=1,k&amp;lt;=N Items(Act),k++,(
	k = 7;
	ybuild = Yield_Tab &amp;lt;&amp;lt; Graph Builder(
		Size( 639, 378 ),
		Show Control Panel( 0 ),
		Show Footer( 0 ),
		Lock Scales( 1 ),
		Variables(
			X( :Month ),
			X( :WW ),
			Y( Column( Act[k] ) ),
			Y( Column( Act[k] || " Weekly Target" ), Position( 1 ) ),
			Y( Column( Act[k] || " Month Target" ), Position( 1 ) )
		),
		Relative Sizes( "X", [197 397] ),
		Elements(
			Position( 1, 1 ),
			Line(
				X,
				Y( 1 ),
				Y( 3 ),
				Legend( 6 ),
				Smoothness( 0.5 ),
				Missing Values( "No Connection" )
			),
			Bar( X, Y( 1 ), Legend( 12 ), Label( "Label by Value" ) ),
			Points( X, Y( 1 ), Y( 3 ), Legend( 16 ), Jitter( 0 ), Summary Statistic( "Mean" ) )
		),
		Elements(
			Position( 2, 1 ),
			Line( X, Y( 1 ), Y( 2 ), Legend( 7 ), Missing Values( "No Connection" ) ),
			Bar( X, Y( 1 ), Legend( 13 ), Label( "Label by Value" ) ),
			Points( X, Y( 1 ), Y( 2 ), Legend( 17 ), Jitter( 0 ), Summary Statistic( "Mean" ) )
		),
		SendToReport(
			Dispatch( {}, "Month", ScaleBox ),
			Dispatch( {}, "WW", ScaleBox ),
			Dispatch(
				{},
				Act[k],
				ScaleBox,
				{Min( Eval( minl[k] ) ), Max( Eval( maxl[k] ) ), Inc( 5 ), Minor Ticks( 1 ),
				Label Row( {Show Major Grid( 1 ), Show Minor Grid( 1 )} )}
			),
			Dispatch(
				{},
				"400",
				ScaleBox,
				{Legend Model(
					6,
					Level Name( 0, "Yield" ),
					Level Name( 1, "Ultimate Yield" ),
					Properties(
						1,
						{Line Color( 20 ), Line Style( "Dotted" ),
						gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
					)
				), Legend Model(
					12,
					Properties(
						0,
						{Fill Color( 2 ), Transparency( 0 ),
						gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
					)
				), Legend Model(
					16,
					Base( 0, 0, 0 ),
					Base( 1, 0, 0 ),
					Properties(
						0,
						{Line Color( 0 ), gradient(
							{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
						)}
					),
					Properties(
						1,
						{Line Color( 0 ), gradient(
							{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
						)}
					)
				), Legend Model(
					7,
					Base( 0, 0, 0 ),
					Properties(
						0,
						{Line Color( 21 ), gradient(
							{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
						)}
					),
					Properties(
						1,
						{Line Color( 20 ), Line Style( "Dotted" ),
						gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
					)
				), Legend Model(
					13,
					Properties(
						0,
						{Fill Color( 2 ), Transparency( 0 ),
						gradient( {Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )} )}
					)
				), Legend Model(
					17,
					Base( 0, 0, 0 ),
					Base( 1, 0, 1 ),
					Properties(
						0,
						{Line Color( 0 ), gradient(
							{Scale Values( [0 1] ), Width( 9 ), N Labels( 6 )}
						)}
					),
					Properties(
						1,
						{Line Color( 0 ), gradient( {Scale Values( [0 1] ), N Labels( 6 )} )}
					)
				)}
			),
			Dispatch(
				{},
				"graph title",
				TextEditBox,
				{Set Text( Top_products[x] || " " || Act[k] )}
			),
			Dispatch( {}, "Y title", TextEditBox, {Set Text( Act[k] )} ),
			Dispatch( {}, "X 1 title", TextEditBox, {Set Text( "Work Week" )} ),
			Dispatch(
				{},
				"400",
				LegendBox,
				{Set Title( "" ), Legend Position(
					{6, [0, 1], 12, [-1], 16, [-1, -1], 7, [-1, -1], 13, [-1], 17, [-1, -1]}
				), Position( {0, 1, -1, -1, -1, -1, -1, -1, -1, -1} )}
			)
		)
	);
	//Report( ybuild )[FrameBox( 1 )] &amp;lt;&amp;lt; journal;
);//));
New Window( "Yield Dashboard", MyHLB = H List Box() );
MyHLB &amp;lt;&amp;lt; append(Report( ybuild )[FrameBox( 1 )]);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Jul 2017 15:07:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41551#M24259</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-07-06T15:07:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41563#M24265</link>
      <description>&lt;P&gt;Setting the outline title to empty will make it hide the top part.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;ybuild = Graph Builder( ... );
yrep = ybuild &amp;lt;&amp;lt; report;
yrep[ OutlineBox(1) ] &amp;lt;&amp;lt; Set Title("");&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Jul 2017 18:16:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41563#M24265</guid>
      <dc:creator>XanGregg</dc:creator>
      <dc:date>2017-07-06T18:16:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41564#M24266</link>
      <description>&lt;P&gt;Wow....another thing I knew at one time that I lost somewhere along the way. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;Great post.....&lt;/P&gt;</description>
      <pubDate>Thu, 06 Jul 2017 18:35:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41564#M24266</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-07-06T18:35:02Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41571#M24267</link>
      <description>&lt;P&gt;Similar to Xan's solution, in the graph-builder JSL you could do this:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = open("$sample_data\Big Class.jmp");

Graph Builder(
	Size( 526, 451 ),
	Show Control Panel( 0 ),
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 16 ) ), Line( X, Y, Legend( 18 ) ) ),
	SendToReport(
		Dispatch( {}, "Graph Builder",
			OutlineBox, {Set Title( "" )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 06 Jul 2017 18:55:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/41571#M24267</guid>
      <dc:creator>pmroz</dc:creator>
      <dc:date>2017-07-06T18:55:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/631506#M82984</link>
      <description>&lt;P&gt;If I want to access the red triangle menu after hiding the OutlineBox, e.g. to access&amp;nbsp;the red triangle menu&lt;/P&gt;&lt;P&gt;... is&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;report(gb)[ OutlineBox(1) ] &amp;lt;&amp;lt; Set Title("show");&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;the only way?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I hope there is an alternative solution&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 10:54:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/631506#M82984</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-03-15T10:54:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/631533#M82985</link>
      <description>&lt;P&gt;Even when the outline is hidden, there is a tiny hotspot for the red triangle menu in the upper left. You will see the cursor change to a pointing hand icon when you're over it.&lt;/P&gt;</description>
      <pubDate>Fri, 12 May 2023 13:50:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/631533#M82985</guid>
      <dc:creator>XanGregg</dc:creator>
      <dc:date>2023-05-12T13:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/631577#M82992</link>
      <description>&lt;P&gt;Wow, nice!&lt;BR /&gt;Thanks,&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/494"&gt;@XanGregg&lt;/a&gt;&amp;nbsp;for the info.&lt;BR /&gt;&lt;BR /&gt;added to&amp;nbsp;&lt;LI-MESSAGE title="CTRL/Alt/Shift + click/select/double click/right click" uid="570994" url="https://community.jmp.com/t5/Discussions/CTRL-Alt-Shift-click-select-double-click-right-click/m-p/570994#U570994" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-forum-thread lia-fa-icon lia-fa-forum lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;:)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 10:52:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/631577#M82992</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-03-15T10:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to Hide Outline Box of Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/735189#M91626</link>
      <description>&lt;P&gt;&lt;LI-MESSAGE title="Plenary: John Sall on Secret Features of JMP" uid="186901" url="https://community.jmp.com/t5/Discovery-Summit-Europe-2019/Plenary-John-Sall-on-Secret-Features-of-JMP/m-p/186901#U186901" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-tkb-thread lia-fa-icon lia-fa-tkb lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2257"&gt;@John_Sall&lt;/a&gt;&amp;nbsp;&amp;nbsp;@~ 9min:&lt;BR /&gt;&lt;P&gt;&lt;EM&gt;If you Click on that little red triangle, you get a menu of commands, okay?&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;One of the secrets is you can right Click anywhere else in that report and get that same menu&lt;/EM&gt;&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;really! I was excited - no need to find the tiny&amp;nbsp;&lt;SPAN&gt;Red-Triangle memorial hotspot?&lt;BR /&gt;but as it seems, the alternative option to&amp;nbsp;&lt;STRONG&gt;right Click anywhere else&lt;/STRONG&gt; is just available as long as the red triangle is available ...&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Mar 2024 10:53:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-Hide-Outline-Box-of-Graph-Builder/m-p/735189#M91626</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-03-15T10:53:58Z</dc:date>
    </item>
  </channel>
</rss>

