<?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: Customisation in the graph builder? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Customisation-in-the-graph-builder/m-p/46218#M26335</link>
    <description>&lt;P&gt;San,&lt;/P&gt;
&lt;P&gt;Nice job.&amp;nbsp; The only thing that I might do is to change the Caption Boxes to make them a little more visable.&amp;nbsp; You can easily do this by Right Clicking on the graph, and then selecting "Customize...".&lt;/P&gt;
&lt;P&gt;If you select the "Text" entry, you can change the font, color, size, etc.&amp;nbsp; You have to do it once for each side of the graph.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="caption.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8084i11E9F9A82AD1C27D/image-size/large?v=v2&amp;amp;px=999" role="button" title="caption.PNG" alt="caption.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can then Save the Script and it will give you the JSL that changed the Caption Boxes&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 1172, 872 ),
	Variables( X( :weight ), Group X( :sex ), Overlay( :sex ) ),
	Elements(
		Histogram( X, Legend( 4 ) ),
		Caption Box( X, Legend( 5 ), Summary Statistic( "Sum" ) )
	),
	Local Data Filter(
		Add Filter( columns( :height ), Where( :height &amp;gt;= 51 &amp;amp; :height &amp;lt;= 70 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"weight",
			ScaleBox,
			{Min( 60 ), Max( 180 ), Inc( 200 ), Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{DispatchSeg( TextSeg( 1 ), {Font( "Showcard Gothic", 14, "Bold" )} )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox( 2 ),
			{DispatchSeg( TextSeg( 1 ), {Font( "Segoe UI", 14, "Bold" )} )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Fri, 20 Oct 2017 15:28:11 GMT</pubDate>
    <dc:creator>txnelson</dc:creator>
    <dc:date>2017-10-20T15:28:11Z</dc:date>
    <item>
      <title>Customisation in the graph builder?</title>
      <link>https://community.jmp.com/t5/Discussions/Customisation-in-the-graph-builder/m-p/46212#M26332</link>
      <description>&lt;P&gt;Dear JMP users,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am using graph builder to present my data in an interactive way. Suppose I use big class data, I am looking for summation of total weight of male and female separately. This should update as I interact with the height. I have used caption box now. I have tried using script as below.&amp;nbsp;But can this be made better and more presentable?. Any help or idea is would be really great.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 1121, 922 ),
	Variables( X( :weight ), Group X( :sex ), Overlay( :sex ) ),
	Elements(
		Histogram( X, Legend( 4 ) ),
		Caption Box( X, Legend( 5 ), Summary Statistic( "Sum" ) )
	),
	Local Data Filter(
		Add Filter( columns( :height ), Where( :height &amp;gt;= 51 &amp;amp; :height &amp;lt;= 70 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"weight",
			ScaleBox,
			{Min( 60 ), Max( 180 ), Inc( 200 ), Minor Ticks( 0 )}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;San&lt;/P&gt;</description>
      <pubDate>Fri, 20 Oct 2017 14:35:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Customisation-in-the-graph-builder/m-p/46212#M26332</guid>
      <dc:creator>sanqub</dc:creator>
      <dc:date>2017-10-20T14:35:20Z</dc:date>
    </item>
    <item>
      <title>Re: Customisation in the graph builder?</title>
      <link>https://community.jmp.com/t5/Discussions/Customisation-in-the-graph-builder/m-p/46218#M26335</link>
      <description>&lt;P&gt;San,&lt;/P&gt;
&lt;P&gt;Nice job.&amp;nbsp; The only thing that I might do is to change the Caption Boxes to make them a little more visable.&amp;nbsp; You can easily do this by Right Clicking on the graph, and then selecting "Customize...".&lt;/P&gt;
&lt;P&gt;If you select the "Text" entry, you can change the font, color, size, etc.&amp;nbsp; You have to do it once for each side of the graph.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="caption.PNG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8084i11E9F9A82AD1C27D/image-size/large?v=v2&amp;amp;px=999" role="button" title="caption.PNG" alt="caption.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can then Save the Script and it will give you the JSL that changed the Caption Boxes&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 1172, 872 ),
	Variables( X( :weight ), Group X( :sex ), Overlay( :sex ) ),
	Elements(
		Histogram( X, Legend( 4 ) ),
		Caption Box( X, Legend( 5 ), Summary Statistic( "Sum" ) )
	),
	Local Data Filter(
		Add Filter( columns( :height ), Where( :height &amp;gt;= 51 &amp;amp; :height &amp;lt;= 70 ) )
	),
	SendToReport(
		Dispatch(
			{},
			"weight",
			ScaleBox,
			{Min( 60 ), Max( 180 ), Inc( 200 ), Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{DispatchSeg( TextSeg( 1 ), {Font( "Showcard Gothic", 14, "Bold" )} )}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox( 2 ),
			{DispatchSeg( TextSeg( 1 ), {Font( "Segoe UI", 14, "Bold" )} )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 20 Oct 2017 15:28:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Customisation-in-the-graph-builder/m-p/46218#M26335</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-10-20T15:28:11Z</dc:date>
    </item>
  </channel>
</rss>

