<?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: Graphics script to detect graph title in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379114#M62907</link>
    <description>&lt;P&gt;That's fascinating that you can start i at 0 and it just 'magically' iterates like that... I got the errors pasted below, but seems to have at least worked some. I created a show(i) command just before creating the graphInfo variable.&lt;BR /&gt;It seems to have worked great for the two graphs, but for some reason it also iterated two more times resulting in an inability to locate biv[i] ... so I wrapped that part in a Try() and it seemed to work as necessary!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) I am not sure why "i" iterates like that or when I could potentially utilize that for other functions in jsl&lt;/P&gt;&lt;P&gt;2) I am not sure why it seems to iterate two more times ... one per graph, one per graphics script??&lt;/P&gt;&lt;P&gt;3) &lt;STRONG&gt;Thank you so much&lt;/STRONG&gt; for the help here... I may not understand the how/why it works yet, but if I can get it to work consistently, that's the win!&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="nathan-clark_0-1619121449505.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32292iEF195DA6CF5884C4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nathan-clark_0-1619121449505.png" alt="nathan-clark_0-1619121449505.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);

dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
i=0;
biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	By( :sex ),
	SendToReport(
		Dispatch(
			{},
			"1",
			ScaleBox,
			{Format( "Fixed Dec", 12, 0 ), Min( 30 ), Max( 180 ), Inc( 20 ),
			Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "" ),
				i++;
				test = Associative Array( {{"F", {0.1, 50}}, {"M", {.8, 0}}} );
				///gather graph info to get "F" or "M" from output
				show(i);
				Try(
					graphInfo = word(2,report(biv[i])[OutlineBox(1)] &amp;lt;&amp;lt; get title,"=");
					show(graphinfo);
					
				);
				Y Function( test[graphInfo][1] * x + test[graphInfo][2], x );
			), Grid Line Order( 1 ), Reference Line Order( 3 )
			}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 22 Apr 2021 20:02:42 GMT</pubDate>
    <dc:creator>nathan-clark</dc:creator>
    <dc:date>2021-04-22T20:02:42Z</dc:date>
    <item>
      <title>Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379057#M62891</link>
      <description>&lt;P&gt;I would like to set up a custom graphics script so each graph gets a unique line based on information contained in an associative array. In the example below, I want to have a graph on the line differently for each category... for my actual use, I will need the graph to 'recognize' the heading it's under so I can use the correct values for the line creation.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For the example image below, I manually updated the "F" graphics script to be "F". So I am looking to find syntax to "gather the graph info" ... in my head, if I can grab the outline box title, I can manipulate that to get what I need... but I am not sure if that is the only/best option.&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" );

dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	By( :sex ),
	SendToReport(
		Dispatch(
			{},
			"1",
			ScaleBox,
			{Format( "Fixed Dec", 12, 0 ), Min( 30 ), Max( 180 ), Inc( 20 ),
			Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "" ),
				test = Associative Array( {{"F", {0.1, 50}}, {"M", {.8, 0}}} );
				///gather graph info to get "F" or "M" from output
				graphInfo = "M";// need to extract so it's "F" for female graph
				Y Function( test[graphInfo][1] * x + test[graphInfo][2], x );
			), Grid Line Order( 1 ), Reference Line Order( 3 )
			}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="nathan-clark_1-1619112295335.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32283i66C13AD83C39A620/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nathan-clark_1-1619112295335.png" alt="nathan-clark_1-1619112295335.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:13:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379057#M62891</guid>
      <dc:creator>nathan-clark</dc:creator>
      <dc:date>2023-06-11T11:13:20Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379063#M62893</link>
      <description>&lt;P&gt;Here are the modifications to your script that will update the titles&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="title.PNG" style="width: 403px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32284iC64E66E2E7DA6075/image-size/large?v=v2&amp;amp;px=999" role="button" title="title.PNG" alt="title.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA\Big Class.jmp" );

biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	By( :sex ),
	SendToReport(
		Dispatch(
			{},
			"1",
			ScaleBox,
			{Format( "Fixed Dec", 12, 0 ), Min( 30 ), Max( 180 ), Inc( 20 ),
			Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "" ),
				test = Associative Array( {{"F", {0.1, 50}}, {"M", {.8, 0}}} );
				///gather graph info to get "F" or "M" from output
				graphInfo = "M";// need to extract so it's "F" for female graph
				Y Function( test[graphInfo][1] * x + test[graphInfo][2], x );
			), Grid Line Order( 1 ), Reference Line Order( 3 )}
		)
	)
);
For( i = 1, i &amp;lt;= N Items( biv ), i++,
	Report( biv[i] )[Outline Box( 1 )] &amp;lt;&amp;lt; set title(
		Substr(
			Report( biv[i] )[Outline Box( 1 )] &amp;lt;&amp;lt; get title,
			Contains( Report( biv[i] )[Outline Box( 1 )] &amp;lt;&amp;lt; get title, "=" ) + 1
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Apr 2021 18:06:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379063#M62893</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-04-22T18:06:51Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379069#M62896</link>
      <description>&lt;P&gt;I wasn't looking to update the title, but to grab the title information ... from within the Graphics Script. I can do all the string manipulation once I have the title information.&lt;BR /&gt;&lt;BR /&gt;Ideally I need something to put within the graphics script which is like "graphTitle = graph &amp;lt;&amp;lt; get title;" and go from there, but I am not sure that's possible unless the object "knows" which part of the tree it's contained within...&lt;/P&gt;</description>
      <pubDate>Thu, 22 Apr 2021 18:23:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379069#M62896</guid>
      <dc:creator>nathan-clark</dc:creator>
      <dc:date>2021-04-22T18:23:31Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379098#M62903</link>
      <description>&lt;P&gt;You will need to know which Outline Box you need to get the title from, but after that, it is a simple get title&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;graph title = report( biv[1] )[OutlineBox(1)] &amp;lt;&amp;lt; get title;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Apr 2021 19:24:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379098#M62903</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-04-22T19:24:44Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379102#M62905</link>
      <description>&lt;P&gt;That's just it .... from within the graphics script itself, can I know that information?&lt;/P&gt;&lt;P&gt;Getting the title is easy from outside.&lt;/P&gt;&lt;P&gt;I want to be able to place the exact same graphics script into each graph of a report and have that script be able to figure out where it is.&lt;/P&gt;</description>
      <pubDate>Thu, 22 Apr 2021 19:30:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379102#M62905</guid>
      <dc:creator>nathan-clark</dc:creator>
      <dc:date>2021-04-22T19:30:56Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379108#M62906</link>
      <description>&lt;P&gt;Try this&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
i=0;
biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	By( :sex ),
	SendToReport(
		Dispatch(
			{},
			"1",
			ScaleBox,
			{Format( "Fixed Dec", 12, 0 ), Min( 30 ), Max( 180 ), Inc( 20 ),
			Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "" ),
				i++;
				test = Associative Array( {{"F", {0.1, 50}}, {"M", {.8, 0}}} );
				///gather graph info to get "F" or "M" from output
				graphInfo = word(2,report(biv[i])[OutlineBox(1)] &amp;lt;&amp;lt; get title,"=");
				show(graphinfo);
				Y Function( test[graphInfo][1] * x + test[graphInfo][2], x );
			), Grid Line Order( 1 ), Reference Line Order( 3 )
			}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Apr 2021 19:50:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379108#M62906</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-04-22T19:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379114#M62907</link>
      <description>&lt;P&gt;That's fascinating that you can start i at 0 and it just 'magically' iterates like that... I got the errors pasted below, but seems to have at least worked some. I created a show(i) command just before creating the graphInfo variable.&lt;BR /&gt;It seems to have worked great for the two graphs, but for some reason it also iterated two more times resulting in an inability to locate biv[i] ... so I wrapped that part in a Try() and it seemed to work as necessary!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1) I am not sure why "i" iterates like that or when I could potentially utilize that for other functions in jsl&lt;/P&gt;&lt;P&gt;2) I am not sure why it seems to iterate two more times ... one per graph, one per graphics script??&lt;/P&gt;&lt;P&gt;3) &lt;STRONG&gt;Thank you so much&lt;/STRONG&gt; for the help here... I may not understand the how/why it works yet, but if I can get it to work consistently, that's the win!&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="nathan-clark_0-1619121449505.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32292iEF195DA6CF5884C4/image-size/medium?v=v2&amp;amp;px=400" role="button" title="nathan-clark_0-1619121449505.png" alt="nathan-clark_0-1619121449505.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);

dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
i=0;
biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	By( :sex ),
	SendToReport(
		Dispatch(
			{},
			"1",
			ScaleBox,
			{Format( "Fixed Dec", 12, 0 ), Min( 30 ), Max( 180 ), Inc( 20 ),
			Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Add Graphics Script(
				2,
				Description( "" ),
				i++;
				test = Associative Array( {{"F", {0.1, 50}}, {"M", {.8, 0}}} );
				///gather graph info to get "F" or "M" from output
				show(i);
				Try(
					graphInfo = word(2,report(biv[i])[OutlineBox(1)] &amp;lt;&amp;lt; get title,"=");
					show(graphinfo);
					
				);
				Y Function( test[graphInfo][1] * x + test[graphInfo][2], x );
			), Grid Line Order( 1 ), Reference Line Order( 3 )
			}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Apr 2021 20:02:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379114#M62907</guid>
      <dc:creator>nathan-clark</dc:creator>
      <dc:date>2021-04-22T20:02:42Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379115#M62908</link>
      <description>&lt;P&gt;Expanding on one of codes by &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2687"&gt;@txnelson&lt;/a&gt; :&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA\Big Class.jmp" );
test = Associative Array( {{"F", {0.1, 50}}, {"M", {.8, 0}}} );

biv = dt &amp;lt;&amp;lt; Bivariate(
	Y( :height ),
	X( :weight ),
	By( :sex ),
	SendToReport(
		Dispatch(
			{},
			"1",
			ScaleBox,
			{Format( "Fixed Dec", 12, 0 ), Min( 30 ), Max( 180 ), Inc( 20 ),
			Minor Ticks( 1 )}
		),
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Grid Line Order(1 ), Reference Line Order( 3)}
		)
	)
);

rep = biv &amp;lt;&amp;lt; Get As Report;

For( i = 1, i &amp;lt;= N Items(rep), i++,
	keyForAa = Substr(Report(rep [i])[Outline Box( 1 )] &amp;lt;&amp;lt; get title,
	Contains(Report(rep [i])[Outline Box( 1 )] &amp;lt;&amp;lt; get title, "=" ) + 1);	

	//see Add Graphics Script example from Scripting Index
	framebox = Report(rep [i])[frame box(1)];
	Eval(EvalExpr(framebox &amp;lt;&amp;lt; Add Graphics Script(
		2,
		Description( "" ),
		Y Function(Expr(test[keyForAa][1]) * x + Expr(test[keyForAa][2]), x );
	)));

);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 22 Apr 2021 20:07:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379115#M62908</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2021-04-22T20:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379116#M62909</link>
      <description>&lt;P&gt;That could work too,&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;&amp;nbsp;... as written it wouldn't be as dynamic as I would need long term, but I could use that to build in a custom iterator variable so each graph has teh same variable, but set to a different number, corresponding to it's place in the report.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks again to everyone for their thoughts!&lt;/P&gt;</description>
      <pubDate>Thu, 22 Apr 2021 20:11:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379116#M62909</guid>
      <dc:creator>nathan-clark</dc:creator>
      <dc:date>2021-04-22T20:11:39Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379226#M62924</link>
      <description>&lt;P&gt;Another approach might be to determine the values before you launch Bivariate. The Summarize() function can be used to determine the levels &lt;EM&gt;&lt;STRONG&gt;in the same order&lt;/STRONG&gt;&lt;/EM&gt; and they appear when using a By variable or Where() clause.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Summarize( level = By( :Group ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The variable level stores a list of strings of all the unique levels in the :Group data column in the right order. So you graphics script does not need to query the outline display box to find out where it is.&lt;/P&gt;</description>
      <pubDate>Fri, 23 Apr 2021 13:39:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379226#M62924</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-04-23T13:39:23Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379263#M62927</link>
      <description>&lt;P&gt;If you make the entire graphic script a function, it gets a &lt;EM&gt;this&lt;/EM&gt; parameter that is the frame box. You can climb up to the outline to grab the title. The benefit is knowing you got the outline containing &lt;EM&gt;this&lt;/EM&gt; graph.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Outline title copied into graph by graphic script" style="width: 423px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/32307i2A6199707FE18431/image-size/large?v=v2&amp;amp;px=999" role="button" title="Capture.PNG" alt="Outline title copied into graph by graphic script" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Outline title copied into graph by graphic script&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$sample_data/big class.jmp", invisible );
bv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ), Fit Line );
(bv &amp;lt;&amp;lt; report)[framebox( 1 )] &amp;lt;&amp;lt; addgraphicsscript(
	// if a function is used, it must be the only statement in the graphic script
	Function( {this},{titlebox=this},
		// the function can use this to find the frame box, climb to an Outline title...
		While( (titlebox &amp;lt;&amp;lt; classname) != "OutlineBox", titlebox = titlebox &amp;lt;&amp;lt; parent ); 
		// then other graphics commands
		Text( center justified, {60, 120}, (titlebox &amp;lt;&amp;lt; gettitle) );
		Circle( {60, 120}, 30 );
		this&amp;lt;&amp;lt;backgroundcolor(rgbcolor(.9,.9,1.0)); // make the frame box light blue
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 23 Apr 2021 15:28:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379263#M62927</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2021-04-23T15:28:47Z</dc:date>
    </item>
    <item>
      <title>Re: Graphics script to detect graph title</title>
      <link>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379469#M62940</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5358"&gt;@Mark_Bailey&lt;/a&gt;&amp;nbsp;Thanks for that idea! It's good to know that summarize will match the order of how the graphs will be created in the report. That's something I can see uses for in several of my scripts :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/982"&gt;@Craige_Hales&lt;/a&gt;&amp;nbsp;That's a really cool idea with the function, I'll have to play with that, too!&lt;/P&gt;</description>
      <pubDate>Sat, 24 Apr 2021 13:15:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Graphics-script-to-detect-graph-title/m-p/379469#M62940</guid>
      <dc:creator>nathan-clark</dc:creator>
      <dc:date>2021-04-24T13:15:45Z</dc:date>
    </item>
  </channel>
</rss>

