<?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 prevent GraphBuilder from resetting the Marker type ?!? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722493#M90485</link>
    <description>&lt;P&gt;I think the issue is there when you use the "default" marker(s?) (I think Dot is the default one).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you check the script when the graph breaks there is no mention of "Dot" and JMP will use "new" default based on Color + Overlay&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1707316515296.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60971i74DD49C389272FDF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1707316515296.png" alt="jthi_2-1707316515296.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And this seems to work fine if you have just two groups&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 = dt &amp;lt;&amp;lt; Graph Builder(
	ignore platform preferences(1),
	Variables(X(:height), Y(:weight), Overlay(:sex), Color(:age)),
	Elements(Points(X, Y, Legend(1))),
	Local Data Filter(Add Filter(columns(:sex))),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(1, Properties(7, {Marker("FilledCircle"), Marker Size(25)}, Item ID("M", 1)))}
		),
		Dispatch({}, "Graph Builder", FrameBox, {Marker Drawing Mode("Outlined")})
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Wed, 07 Feb 2024 14:36:47 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-02-07T14:36:47Z</dc:date>
    <item>
      <title>How to prevent GraphBuilder from resetting the Marker type ?!?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722469#M90483</link>
      <description>&lt;P&gt;Does somebody use GraphBuilder in his/her Dashboards - with manually selected markers?&lt;/P&gt;
&lt;P&gt;If yes, how do you prevent Graph Builder from overwriting YOUR settings?&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; Graph Builder(
	Variables( X( :height ), Y( :weight ), Overlay( :sex ), Color( :age ) ),
	Elements( Points( X, Y, Legend( 1 ) ) ),
	Local Data Filter( Add Filter( columns( :sex ) ) ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				1,
				Properties( 7, {Marker( "Dot" ), Marker Size( 30 )}, Item ID( "M", 1 ) )
			)}
		),
		Dispatch( {}, "Graph Builder", FrameBox, {Marker Drawing Mode( "Outlined" )} )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The background: there are some points in my data set which are not in focus at the moment, but should be plotted somehow.&lt;BR /&gt;The idea: show them as tiny gray dots.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;But it seems that the setting for marker state DOT is deleted whenever the respective legend item is excluded by a data filter.&lt;/P&gt;
&lt;P&gt;One could say: no wonder, how could Jmp remember such a setting when the legend item is gone?&lt;/P&gt;
&lt;P&gt;Actually Jmp &lt;STRONG&gt;can&lt;/STRONG&gt; remember may other marker settings - and the marker size - but not this one.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6346490566112w636h336r230" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6346490566112" data-account="6058004218001" data-player="default" data-embed="default" class="vjs-fluid" controls="" data-application-id="" style="width: 100%; height: 100%;"&gt;&lt;/video-js&gt;&lt;/div&gt;&lt;script src="https://players.brightcove.net/6058004218001/default_default/index.min.js"&gt;&lt;/script&gt;&lt;script&gt;(function() {  var wrapper = document.getElementById('lia-vid-6346490566112w636h336r230');  var videoEl = wrapper ? wrapper.querySelector('video-js') : null;  if (videoEl) {     if (window.videojs) {       window.videojs(videoEl).ready(function() {         this.on('loadedmetadata', function() {           this.el().querySelectorAll('.vjs-load-progress div[data-start]').forEach(function(bar) {             bar.setAttribute('role', 'presentation');             bar.setAttribute('aria-hidden', 'true');           });         });       });     }  }})();&lt;/script&gt;&lt;a class="video-embed-link" href="https://community.jmp.com/t5/video/gallerypage/video-id/6346490566112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 08 Feb 2024 15:32:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722469#M90483</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-08T15:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent GraphBuilder from resetting the Marker type ?!?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722479#M90484</link>
      <description>&lt;P&gt;Associated with this bug:&lt;BR /&gt;For value color and value order there is the possibility to define a column property - to automatically define the setting for all plots.&lt;/P&gt;&lt;P&gt;Surprisingly, for value marker there is no such setting:&lt;BR /&gt;&lt;LI-MESSAGE title="new Column Property: Value Markers" uid="565358" url="https://community.jmp.com/t5/JMP-Wish-List/new-Column-Property-Value-Markers/m-p/565358#U565358" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-idea-thread lia-fa-icon lia-fa-idea lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Feb 2024 21:08:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722479#M90484</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-11T21:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent GraphBuilder from resetting the Marker type ?!?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722493#M90485</link>
      <description>&lt;P&gt;I think the issue is there when you use the "default" marker(s?) (I think Dot is the default one).&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you check the script when the graph breaks there is no mention of "Dot" and JMP will use "new" default based on Color + Overlay&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1707316515296.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60971i74DD49C389272FDF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1707316515296.png" alt="jthi_2-1707316515296.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;And this seems to work fine if you have just two groups&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 = dt &amp;lt;&amp;lt; Graph Builder(
	ignore platform preferences(1),
	Variables(X(:height), Y(:weight), Overlay(:sex), Color(:age)),
	Elements(Points(X, Y, Legend(1))),
	Local Data Filter(Add Filter(columns(:sex))),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(1, Properties(7, {Marker("FilledCircle"), Marker Size(25)}, Item ID("M", 1)))}
		),
		Dispatch({}, "Graph Builder", FrameBox, {Marker Drawing Mode("Outlined")})
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 07 Feb 2024 14:36:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722493#M90485</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-07T14:36:47Z</dc:date>
    </item>
    <item>
      <title>Re: How to prevent GraphBuilder from resetting the Marker type ?!?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722495#M90486</link>
      <description>&lt;P&gt;Yes, this is the issue.&amp;nbsp;&lt;SPAN&gt;Jmp&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;can&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;remember may other marker settings - and the marker size - but not the default one.&lt;/SPAN&gt;&lt;BR /&gt;This reminds me of:&lt;BR /&gt;&lt;LI-MESSAGE title="Do you use the preferences?" uid="686348" url="https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/686348#U686348" 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;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Seems that the logic behind Jmp crashes when a user sets something back to default. Such cases are automatically eliminated from the code.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here it's just a wrong marker - and the user can set it back ... 5 times a day.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For Data Filter/Conditional the issue is much larger.&lt;/P&gt;</description>
      <pubDate>Wed, 07 Feb 2024 14:42:31 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-prevent-GraphBuilder-from-resetting-the-Marker-type/m-p/722495#M90486</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-02-07T14:42:31Z</dc:date>
    </item>
  </channel>
</rss>

