<?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 do you make a graph select the max and min for your Y axis instead of defaulting to limits? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519665#M74564</link>
    <description>&lt;P&gt;No idea if you want scripted solution or not (both are basically same as you can steal script JMP creates for you).&lt;/P&gt;
&lt;P&gt;Right click on marker on legend and change the size&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1657546484096.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43848i19C28011B6058180/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1657546484096.png" alt="jthi_0-1657546484096.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and if you need the script go to red triangle and get script from Save Script menu&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size(548, 589),
	Variables(X(:weight), Y(:height)),
	Elements(Points(X, Y, Legend(3)), Smoother(X, Y, Legend(4))),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(3, Properties(0, {Marker Size(6)}, Item ID("height", 1)))}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 11 Jul 2022 13:36:42 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2022-07-11T13:36:42Z</dc:date>
    <item>
      <title>How do you make a graph select the max and min for your Y axis instead of defaulting to limits?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519604#M74557</link>
      <description />
      <pubDate>Fri, 09 Jun 2023 17:03:54 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519604#M74557</guid>
      <dc:creator>Andyon98</dc:creator>
      <dc:date>2023-06-09T17:03:54Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a graph select the max and min for your Y axis instead of defaulting to limits?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519611#M74558</link>
      <description>&lt;P&gt;If you mean column property Spec Limits with "limits" then you could for example remove tick from Show as Graph Reference Lines if you don't want to see them at all.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1657536247685.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43846i87C850B7DF849A77/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1657536247685.png" alt="jthi_0-1657536247685.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Else you could use scripting after graph has been created by using Min and Max&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1657536462025.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43847i29A37B63318267DD/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1657536462025.png" alt="jthi_1-1657536462025.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;or possibly&amp;nbsp;&lt;LI-MESSAGE title="Insert one expression into another using Eval Insert, Eval Expr, Parse, and Substitute" uid="48998" url="https://community.jmp.com/t5/JSL-Cookbook/Insert-one-expression-into-another-using-Eval-Insert-Eval-Expr/m-p/48998#U48998" 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;&amp;nbsp;to insert min/max values to graphs script directly (get script from graph and then modify it as needed)&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 10:48:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519611#M74558</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-07-11T10:48:24Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a graph select the max and min for your Y axis instead of defaulting to limits?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519618#M74561</link>
      <description>&lt;P&gt;This worked! thank you, how can I choose the size of my data points on a graph?&lt;/P&gt;</description>
      <pubDate>Mon, 11 Jul 2022 11:48:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519618#M74561</guid>
      <dc:creator>Andyon98</dc:creator>
      <dc:date>2022-07-11T11:48:53Z</dc:date>
    </item>
    <item>
      <title>Re: How do you make a graph select the max and min for your Y axis instead of defaulting to limits?</title>
      <link>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519665#M74564</link>
      <description>&lt;P&gt;No idea if you want scripted solution or not (both are basically same as you can steal script JMP creates for you).&lt;/P&gt;
&lt;P&gt;Right click on marker on legend and change the size&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1657546484096.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/43848i19C28011B6058180/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1657546484096.png" alt="jthi_0-1657546484096.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and if you need the script go to red triangle and get script from Save Script menu&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size(548, 589),
	Variables(X(:weight), Y(:height)),
	Elements(Points(X, Y, Legend(3)), Smoother(X, Y, Legend(4))),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(3, Properties(0, {Marker Size(6)}, Item ID("height", 1)))}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 11 Jul 2022 13:36:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-do-you-make-a-graph-select-the-max-and-min-for-your-Y-axis/m-p/519665#M74564</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2022-07-11T13:36:42Z</dc:date>
    </item>
  </channel>
</rss>

