<?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: Do you use the preferences? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/737427#M91849</link>
    <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;, I tried your code and see what you mean.&amp;nbsp; having changed the preference for the filter and the column switcher and then using choices that match the preference defaults (not the current preference) you make a report.&amp;nbsp; Then saving script doesn't bother to include the settings that match the defaults so the script doesn't reproduce your report.&amp;nbsp; And you are interpreting that&amp;nbsp; (and support claimed?) that this is intentional to clean out anything that wouldn't be needed &lt;EM&gt;if you had left your system at the default preferences&lt;/EM&gt;?&amp;nbsp; ie. Conditional(0) not included because it wouldn't be needed if you had default preference even though it's relevant currently?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But that is not what I see for the preferences for Graph Builder itself.&amp;nbsp; If I change my Preference for Graph Builder to not show title, for example, and then I make a graph builder and ask (either in JSL or manually after the fact) to show title,&amp;nbsp; I do get a script with showtitle(1) included.&amp;nbsp; The kind of redundant setting that conditional(0) could be seen as, one you don't need if you have default preferences.&amp;nbsp; I think what I see generally is it does not include settings that aren't needed with the &lt;EM&gt;preferences I have currently.&amp;nbsp;&lt;/EM&gt; Now that I turned off showing title in my Preferences, if I ask for showtitle(0) it doesn't bother to mention that in the script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, seems like 2 issues: (1) one might like to capture all the options regardless of whether they match your preferences or not and (2) the "get script" type options appear to me to treat the filter and col switcher differently than they treat the rest of the platform.&amp;nbsp; it fails to give you a script that works with your current preferences like it does for platform preferences. I can appreciate that removing unnecessary clauses is intentional but not that the definition of unnecessary is different for filter than for settitle().?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. seems like a bug to me that it's eliminating things not for being same as current preferences but for being same as defaults.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. seems like it is indeed similar to my wish list item about Use Thousands Separator (&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/interrogate-Use-Thousands-Separator-using-JSL/idi-p/737342#M5361" target="_blank"&gt;interrogate Use Thousands Separator using JSL - JMP User Community&lt;/A&gt;), where maybe one solution could be an option for a more verbose script to be returned, one that doesn't eliminate anything as just "same as preferences".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great, now my preferences are all screwed up...&amp;nbsp; :)&lt;/img&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 21 Mar 2024 21:05:56 GMT</pubDate>
    <dc:creator>hardner</dc:creator>
    <dc:date>2024-03-21T21:05:56Z</dc:date>
    <item>
      <title>Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/686348#M87214</link>
      <description>&lt;P&gt;Via File/Preferences, you can change the standard settings of Jmp.&lt;/P&gt;&lt;P&gt;Very cool to adjust Jmp to your needs :)&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But I found a subtle issue - in combination with the functionality to automatically generate JSL code (save to script, advanced log, Dashboards, log, Workflow Builder ...)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;FONT color="#FF0000"&gt;The below code changes the preferences, so - please think twice if you want to try it .&lt;/FONT&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The story:&lt;/P&gt;&lt;P&gt;A user adjusts some settings (Conditional &amp;amp; Column Switcher Retain Axis Setting) via File/Preferences&lt;BR /&gt;- an then generates a report with the &lt;U&gt;&lt;STRONG&gt;default&lt;/STRONG&gt; &lt;/U&gt;setting (he has do this manually, no chance to generate the code via enhanced log):&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

Set Preferences(
	Data Filter Conditional( 1 ),
	Column Switcher Retain Axis Setting( 1 )
);


Graph Builder(
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	Local Data Filter(
		Conditional(0),
		Add Filter(
			columns( :sex, :name )
		)
	),
	Column Switcher( :weight, {:age, :weight}, Retain Axis Settings( 0 ) )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Then he adjusts the Report interactively via the GUI and saves the script (using the enhanced log functionality of JMP).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The generated script will look like this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :sex, :name ),
			Display( :name, N Items( 15 ), Find( Set Text( "" ) ) )
		)
	),
	Column Switcher( :weight, {:age, :weight} )
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please note:&lt;BR /&gt;Conditional(0) -&amp;gt; &lt;STRONG&gt;removed automatically!&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;CODE class=" language-jsl"&gt;Retain Axis Settings( 0 )&amp;nbsp;&lt;/CODE&gt;-&amp;gt; &lt;STRONG&gt;removed automatically!&lt;/STRONG&gt;&lt;BR /&gt;&lt;BR /&gt;The finding:&lt;BR /&gt;Default settings are automatically removed from the code - "&lt;EM&gt;as they won't have an effect for a standard system&lt;/EM&gt;".&lt;/P&gt;&lt;P&gt;Same happens if the uses uses the Report inside a Dashboard (!) - default settings won't be added.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Now, the user runs the code again - imagine how the Report will look like ...&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;I can understand why it is like this - it is no bug it's a cool Feature that Jmp automatically cleans code to remove unnecessary lines.&lt;/P&gt;&lt;P&gt;But in combination with a user who dares to change settings in the preferences it definitely acts like a bug - a severe bug!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;My current workaround: &lt;STRONG&gt;Just change preferences where you are sure that you won't EVER (!!!) use the default setting.&lt;BR /&gt;&lt;/STRONG&gt;This rule hurts&amp;nbsp; - especially for cases where I use the adjusted setting in 99% of the cases - and 1% the default setting.&lt;BR /&gt;Then, the rule doesn't allow me to adjust the preferences.&amp;nbsp;I am forced lo live with the default setting and have to manually adjust the setting in 99% of the cases.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Is there a better solution - how do YOU solve this issue in daily work life?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 09:34:47 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/686348#M87214</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-07-18T09:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/688363#M87410</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Accoring to Jmp support (TS-00061254):&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;EM&gt;this is working as designed.&lt;/EM&gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So:&lt;BR /&gt;With CHANGED settings in the preferences, a user loses the chance to use Dashboard Builder to generate Dashboards which open platforms on his system with STANDARD settings :(&lt;/img&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Workaround:&amp;nbsp;&lt;/P&gt;&lt;P&gt;Open the source script of the Dashboard and manually add the code for the standard setting.&lt;/P&gt;</description>
      <pubDate>Wed, 18 Oct 2023 12:42:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/688363#M87410</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-10-18T12:42:55Z</dc:date>
    </item>
    <item>
      <title>Re: Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/688376#M87411</link>
      <description>&lt;P&gt;Jmp support suggested to write a post for the wish list.&lt;/P&gt;&lt;P&gt;Here it is:&lt;BR /&gt;&lt;LI-MESSAGE title="Changed Settings in the Preferences -&amp;amp;gt; fix the issue" uid="688365" url="https://community.jmp.com/t5/JMP-Wish-List/Changed-Settings-in-the-Preferences-gt-fix-the-issue/m-p/688365#U688365" 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>Wed, 18 Oct 2023 12:49:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/688376#M87411</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-10-18T12:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/737427#M91849</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;, I tried your code and see what you mean.&amp;nbsp; having changed the preference for the filter and the column switcher and then using choices that match the preference defaults (not the current preference) you make a report.&amp;nbsp; Then saving script doesn't bother to include the settings that match the defaults so the script doesn't reproduce your report.&amp;nbsp; And you are interpreting that&amp;nbsp; (and support claimed?) that this is intentional to clean out anything that wouldn't be needed &lt;EM&gt;if you had left your system at the default preferences&lt;/EM&gt;?&amp;nbsp; ie. Conditional(0) not included because it wouldn't be needed if you had default preference even though it's relevant currently?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;But that is not what I see for the preferences for Graph Builder itself.&amp;nbsp; If I change my Preference for Graph Builder to not show title, for example, and then I make a graph builder and ask (either in JSL or manually after the fact) to show title,&amp;nbsp; I do get a script with showtitle(1) included.&amp;nbsp; The kind of redundant setting that conditional(0) could be seen as, one you don't need if you have default preferences.&amp;nbsp; I think what I see generally is it does not include settings that aren't needed with the &lt;EM&gt;preferences I have currently.&amp;nbsp;&lt;/EM&gt; Now that I turned off showing title in my Preferences, if I ask for showtitle(0) it doesn't bother to mention that in the script.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, seems like 2 issues: (1) one might like to capture all the options regardless of whether they match your preferences or not and (2) the "get script" type options appear to me to treat the filter and col switcher differently than they treat the rest of the platform.&amp;nbsp; it fails to give you a script that works with your current preferences like it does for platform preferences. I can appreciate that removing unnecessary clauses is intentional but not that the definition of unnecessary is different for filter than for settitle().?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. seems like a bug to me that it's eliminating things not for being same as current preferences but for being same as defaults.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. seems like it is indeed similar to my wish list item about Use Thousands Separator (&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/interrogate-Use-Thousands-Separator-using-JSL/idi-p/737342#M5361" target="_blank"&gt;interrogate Use Thousands Separator using JSL - JMP User Community&lt;/A&gt;), where maybe one solution could be an option for a more verbose script to be returned, one that doesn't eliminate anything as just "same as preferences".&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Great, now my preferences are all screwed up...&amp;nbsp; :)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 21:05:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/737427#M91849</guid>
      <dc:creator>hardner</dc:creator>
      <dc:date>2024-03-21T21:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/737430#M91851</link>
      <description>&lt;P&gt;100% agree :)&lt;/img&gt;&lt;BR /&gt;&lt;BR /&gt;especially the&lt;BR /&gt;-&amp;nbsp;&lt;SPAN&gt;I can appreciate that removing unnecessary clauses is intentional&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- but not that the definition of unnecessary is different for filter than for settitle().?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;there are many more settings which behave like the column switcher and the data filter - even settings which directly affect Graph Builder:&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;If you change the default settings for Summary Statistics, Graph Spacing etc. in the preferences, all your automatically generated JSL code will have a section with:&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Summary Statistic( "Median" ),&lt;/FONT&gt;&lt;BR /&gt;&lt;FONT face="courier new,courier"&gt;Graph Spacing( 4 )&lt;/FONT&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;... till you try to set it back to the default values. If you hit the default setting, the settings will not show up in the generated JSL script - with a similar issue like Conditional: no chance to generate a JSL code automatically with the default settings.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 21 Mar 2024 21:44:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/737430#M91851</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-03-21T21:44:42Z</dc:date>
    </item>
    <item>
      <title>Re: Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/737434#M91853</link>
      <description>&lt;P&gt;As there is so much room between&amp;nbsp;&lt;BR /&gt;- removing "unnecessary" clauses&lt;/P&gt;&lt;P&gt;- writing all settings such that the result is the same on ANY system - independent of the current settings.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So, how about a verbose(0), verbose(0.3), verbose (0.5), verbose(0.7), verbose(1)&lt;/P&gt;&lt;P&gt;- 0: strip all the "unneccessary" code like now - compatibility mode&lt;BR /&gt;- 0.3: generate all the JSL code that is necessary to generate the same result on &lt;STRONG&gt;this&lt;/STRONG&gt; system.&amp;nbsp; [fixes the issue with Conditional]&lt;BR /&gt;- 0.5: generate all the JSL code that is necessary to generate the same result on a &lt;STRONG&gt;default&lt;/STRONG&gt; system. [fixes the issue with the user defined gradient setting]&lt;/P&gt;&lt;P&gt;- 0.7: based on the generated graphs/ reports of the last 6 months, include all settings which are changed &amp;gt;=3 times. Generate a code which is robust against all the settings.&lt;/P&gt;&lt;P&gt;- 1: JSL code robust against any settings in the preferences.&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;0.7: super useful - my favorite!&lt;/STRONG&gt;&lt;BR /&gt;- who cares about 5 additional lines of code -&amp;nbsp; if they will generate a more robust result on any system of your colleages.&lt;BR /&gt;-&amp;nbsp;how often did you generate a &lt;FONT face="courier new,courier"&gt;concatenate&lt;/FONT&gt; and wondered later about the exact wording of &lt;FONT face="courier new,courier"&gt;append to main table(1)&lt;/FONT&gt;?&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jul 2024 09:46:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/737434#M91853</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2024-07-18T09:46:34Z</dc:date>
    </item>
    <item>
      <title>Re: Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/913107#M107294</link>
      <description>&lt;P&gt;A colleague found a nice example which shows a similar bug caused by a conflict of different settings in Graph Builder:&lt;BR /&gt;A user is not allowed to define a setting to be STANDARD&amp;nbsp; if on a higher level a non-standard setting is applied.&lt;BR /&gt;&lt;BR /&gt;In Graph Builder, there is a control for the axis settings - and within the axis settings there is a control for the reference lines.&lt;BR /&gt;The reference lines seem to inherit the font settings from the axis settings.&lt;BR /&gt;And the only way to "delete" an inherited setting is: apply a non-standard setting and thereby overwrite the inherited setting.&lt;BR /&gt;Difficult to explain - but easy to "experience":&lt;BR /&gt;The text of the label&amp;nbsp; "standard" should be "standard", not Bold - run the code and try your luck:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1763041860219.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/86983i06A3DEB5C5FF5052/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1763041860219.png" alt="hogi_1-1763041860219.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = new table("test", new column ("X"));
Graph Builder(
	Size( 469, 260 ),
	Graph Spacing( 4 ),
	Variables( X( :X ) ),
	Elements( Points( X, Legend( 2 ) ) ),
	SendToReport(
		Dispatch( {}, {:X}, ScaleBox,
			{Min( 0 ), Max( 50 ), Inc( 10 ), Minor Ticks( 1 ),
			Add Ref Line(
				20,
				"Solid",
				"Black",
				"italic",
				1,
				1,
				Label Settings( {Set Font Style( "Italic" )} )
			), Add Ref Line( 30, "Solid", "Black", "standard", 1 ),
			Label Row( Set Font Style( "Bold" ) )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;A similar issue arises with preferences and custom settings. Once a setting in the preferences differs from the standard setting, the user is forced to use this setting. There is little chance of forcing a report to use the standard settings, especially after the report has been changed and the script saved. This is the time where "reset to standard" gets lost.&amp;nbsp;&lt;BR /&gt;&lt;BR /&gt;Even worse with&amp;nbsp;&lt;STRONG&gt;reference lines:&lt;/STRONG&gt; no chance to&amp;nbsp;&lt;STRONG&gt;reset&lt;/STRONG&gt; the setting at all?&lt;/P&gt;</description>
      <pubDate>Thu, 13 Nov 2025 13:58:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/913107#M107294</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-13T13:58:15Z</dc:date>
    </item>
    <item>
      <title>Re: Do you use the preferences?</title>
      <link>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/913487#M107338</link>
      <description>&lt;P&gt;A similar conflict exists for Marker and color settings in Graph builder:&lt;BR /&gt;&lt;BR /&gt;There are different ways to adjust the settings for markers:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;row state for individual rows&lt;/LI&gt;
&lt;LI&gt;marker settings via the legend menu in Graph Builder&lt;/LI&gt;
&lt;LI&gt;global marker settings in the preferences menu&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;[what is not possible in JMP 19 is controlling the marker settings via a&amp;nbsp;&lt;LI-MESSAGE title="Column Property: &amp;quot;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;gt; please follow the link and vote! ]&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The issues:&lt;/P&gt;
&lt;P&gt;Settings via the legend menu override the settings from the &lt;STRONG&gt;row states&lt;/STRONG&gt;.&lt;BR /&gt;The exception is the &lt;STRONG&gt;default marker&lt;/STRONG&gt;. If the standard marker is selected in the legend menu, JMP assumes that the user wants to 'reset' the settings, so the command will be "ignored" and the marker setting from the row states gets active again. The only way to 'fight' against row states is to assign a &lt;STRONG&gt;&lt;EM&gt;special&lt;/EM&gt; &lt;/STRONG&gt;marker. It is not possible to overrule row states with the 'default marker'.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Similarly, settings via the legend menu override the settings in the &lt;STRONG&gt;preferences&lt;/STRONG&gt;.&lt;BR /&gt;The exception is again the default marker. If the setting is switched to the standard marker, JMP assumes that the user wants to 'reset' the settings, so the preferences will be activated again. Consequently, one must assign a &lt;STRONG&gt;non-standard marker&lt;/STRONG&gt; to override the settings in the preferences. It is not possible to overrule marker settings from the preferences with a 'default marker': In the vide, the user selects "dot" - and Graph Builder uses "&lt;CODE class=" language-jsl"&gt;FilledSquare&lt;/CODE&gt;" (from the preferences).&lt;BR /&gt;My recommendation: don't touch the marker setting in the preferences!!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The same applies to &lt;STRONG&gt;colors&lt;/STRONG&gt;:&lt;BR /&gt;it is not possible to override a row state color with &lt;STRONG&gt;black&lt;/STRONG&gt; (the default color).&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6385111501112w974h540r635" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6385111501112" 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-6385111501112w974h540r635');  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/6385111501112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&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" );

Graph Builder(
	Size( 437, 413 ),
	Graph Spacing( 4 ),
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),
	SendToReport(
		Dispatch( {}, "Graph Builder", FrameBox, {Marker Size( 10 ), Marker Drawing Mode( "Outlined" )} ),
		Dispatch( {}, "400", LegendBox, {Legend Position( {1, [2, 3], 2, [0, 1]} )} )
	)
);

wait(2);
// Set selected rows' markers
dt  &amp;lt;&amp;lt; Clear Select &amp;lt;&amp;lt; Select Rows( [5] ) &amp;lt;&amp;lt; Markers( "Circle" );


wait(2);
// please go to the preferences and set it back after running this code:
Set Preferences( Graph Marker( "FilledSquare" ));&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 14 Nov 2025 20:20:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/913487#M107338</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-14T20:20:58Z</dc:date>
    </item>
  </channel>
</rss>

