<?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: consistent marker and style control in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915657#M107606</link>
    <description>&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Type Properties()&lt;/FONT&gt;, in combination with colors:&amp;nbsp;&lt;BR /&gt;useful to batch assign a color to all entries - but one:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_4-1764261205062.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87841i76F54CC6260DCC52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_4-1764261205062.png" alt="hogi_4-1764261205062.png" /&gt;&lt;/span&gt;&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 Families.jmp" );
Graph Builder(
	Variables( X( :name ), Y( :weight ), Color( :age ) ),
	Elements( Position( 1, 1 ), Points( X, Y, Legend( 1 ) ) ),

	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{
			Legend Model(
				1,
				Type Properties( 0, "Marker", { Line Color( 81 )} ),
				Properties( 1, {Line Color( 3 )}, Item ID( "15", 1 ) )
			)}
		))
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 27 Nov 2025 17:58:20 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-11-27T17:58:20Z</dc:date>
    <item>
      <title>consistent marker and style control - type properties</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915563#M107585</link>
      <description>&lt;P&gt;I wished there was a consistent marker control in Graph Builder.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Dec 2025 08:16:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915563#M107585</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-05T08:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control - type properties</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915573#M107586</link>
      <description>&lt;P&gt;The wish is from August (2025):&lt;LI-MESSAGE title="consistent marker control in Graph Builder" uid="894599" url="https://community.jmp.com/t5/JMP-Wish-List/consistent-marker-control-in-Graph-Builder/m-p/894599#U894599" 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;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;It seems that someone else had the same wish, because here it is [1st part]!&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6385650274112w786h370r262" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6385650274112" 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-6385650274112w786h370r262');  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/6385650274112"&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;A new era of style control in Graph Builder / JMP19:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class Families.jmp" );
Graph Builder(
	Size( 590, 412 ),
	Graph Spacing( 4 ),
	Variables( X( :name ), Y( :weight ), Y( :height ), Color( :sex ) ),
	Elements( Position( 1, 1 ), Points( X, Y, Legend( 1 ) ) ),
	Elements( Position( 1, 2 ), Points( X, Y, Legend( 2 ) ) ),
	Column Switcher( :sex, {:age, :sex} ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				1,
				Type Properties( 0, "Marker", {Marker( "Circle" )} )
			), Legend Model(
				2,
				Type Properties( 0, "Marker", {Marker( "FilledCircle" )} )
			)}
		))
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In the Scripting Index, I could not find further documentation about the new feature:&lt;BR /&gt;&lt;A href="https://jsl.jmp.com/search.html?q=Type+Properties" target="_blank" rel="noopener"&gt;https://jsl.jmp.com/search.html?q=Type+Properties&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;I guessit works along the idea:&amp;nbsp; if all items of one plot type have the same setting, then this setting is saved via &lt;FONT face="courier new,courier"&gt;Type Properties()&lt;/FONT&gt; to the Legend Group.&lt;/P&gt;
&lt;P&gt;Important: &lt;STRONG&gt;default&lt;/STRONG&gt; settings (marker = dot, color=black, line style: solid) are not saved (!!)&amp;nbsp; &amp;nbsp; &amp;nbsp; * )&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&lt;BR /&gt;*) further details about this behavior can be found in a previous post:&lt;BR /&gt;&lt;A href="https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/913487/highlight/true#M107338" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/Discussions/Do-you-use-the-preferences/m-p/913487/highlight/true#M107338&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 09:15:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915573#M107586</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-08T09:15:07Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915574#M107587</link>
      <description>&lt;P&gt;Not only for Marker Styles ; )&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6385648813112w718h352r226" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6385648813112" 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-6385648813112w718h352r226');  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/6385648813112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 466, 312 ),
	Show Control Panel( 0 ),
	Graph Spacing( 4 ),
	Variables( X( :name ), Y( :weight ), Y( :height ), Overlay( :sex ) ),
	Elements( Position( 1, 1 ), Line( X, Y, Legend( 3 ) ) ),
	Elements( Position( 1, 2 ), Line( X, Y, Legend( 4 ) ) ),
	Column Switcher( :sex, {:age, :sex} ),
	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{Legend Model(
				4,
				Base( 0, 0, 0, Item ID( "F", 1 ) ),
				Base( 1, 0, 1, Item ID( "M", 1 ) ),
				Type Properties( 0, "H Line", {Line Style( "Dashed" )} )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 27 Nov 2025 09:14:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915574#M107587</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-27T09:14:43Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915655#M107605</link>
      <description>&lt;P&gt;The new feature for the lines is very helpful.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Looking at&amp;nbsp;&lt;LI-MESSAGE title="consistent marker control in Graph Builder" uid="894599" url="https://community.jmp.com/t5/JMP-Wish-List/consistent-marker-control-in-Graph-Builder/m-p/894599#U894599" 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;, the new feature is exactly&amp;nbsp; proposed mode:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1764260193053.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87837i58286EA35ED0C0C8/image-size/large?v=v2&amp;amp;px=999" role="button" title="hogi_0-1764260193053.png" alt="hogi_0-1764260193053.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Very helpful will be the mode:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1764260289393.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87839i55299407F89B25B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="hogi_2-1764260289393.png" alt="hogi_2-1764260289393.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;e.g. to generate the first graph with hollow markers and the second graph with filled markers.&lt;BR /&gt;or to use the left axis for hollow markers and the right axis for filled markers.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I just tried&amp;nbsp;&lt;CODE class=" language-jsl"&gt;Type Properties( 0, "Marker", {Marker( "Hollow" )} ):&lt;BR /&gt;&lt;/CODE&gt;but it doesn't work.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 09:16:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915655#M107605</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-08T09:16:36Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915657#M107606</link>
      <description>&lt;P&gt;&lt;FONT face="courier new,courier"&gt;Type Properties()&lt;/FONT&gt;, in combination with colors:&amp;nbsp;&lt;BR /&gt;useful to batch assign a color to all entries - but one:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_4-1764261205062.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/87841i76F54CC6260DCC52/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_4-1764261205062.png" alt="hogi_4-1764261205062.png" /&gt;&lt;/span&gt;&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 Families.jmp" );
Graph Builder(
	Variables( X( :name ), Y( :weight ), Color( :age ) ),
	Elements( Position( 1, 1 ), Points( X, Y, Legend( 1 ) ) ),

	SendToReport(
		Dispatch( {}, "400", ScaleBox,
			{
			Legend Model(
				1,
				Type Properties( 0, "Marker", { Line Color( 81 )} ),
				Properties( 1, {Line Color( 3 )}, Item ID( "15", 1 ) )
			)}
		))
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 27 Nov 2025 17:58:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/915657#M107606</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-11-27T17:58:20Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/917699#M107731</link>
      <description>&lt;DIV&gt;Hm, assign the &lt;EM&gt;&lt;STRONG&gt;same&lt;/STRONG&gt;&lt;/EM&gt; setting to all items?!?&lt;BR /&gt;&lt;BR /&gt;Ouch, here is an unintended side effect of type properties - with significant harm!&lt;/DIV&gt;
&lt;DIV&gt;The&amp;nbsp;victim: &lt;STRONG&gt;exploratory data analysis in JMP&lt;/STRONG&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;JMP18:&lt;/DIV&gt;
&lt;DIV&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6386062267112w682h416r35" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6386062267112" 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-6386062267112w682h416r35');  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/6386062267112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;JMP19:&lt;BR /&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6386033166112w684h424r230" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6386033166112" 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-6386033166112w684h424r230');  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/6386033166112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;BR /&gt;&lt;BR /&gt;What happened?&lt;/DIV&gt;
&lt;UL&gt;
&lt;LI&gt;The user was not happy with the default settings and adjusted the color for one item in the legend.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;during the exploratory data analysis, the user restricts the view to the item with the special setting&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;this is where the new feature gets activated:&lt;/LI&gt;
&lt;/UL&gt;
&lt;DIV&gt;from an earlier post:
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;&amp;nbsp;if all items of one plot type have the same setting, then this setting is saved via &lt;FONT face="courier new,courier"&gt;Type Properties()&lt;/FONT&gt; to the Legend Group.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;UL&gt;
&lt;LI&gt;"all" -&amp;gt; even a &lt;U&gt;single&lt;/U&gt; one (!)&lt;BR /&gt;JMP saved the specific setting as the default for the whole plot.&lt;/LI&gt;
&lt;LI&gt;Later, when the user resets the selection in the data filter, this new setting is applied to all the other elements in the graph as well. By this inheritance of plot settings all elements get assimilated and share the same style:&lt;BR /&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1764938611987.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/88338iA4CC8A93D77F42AE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1764938611987.png" alt="hogi_0-1764938611987.png" /&gt;&lt;/span&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;In general, this is not what the users expect.&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;How can you escape the trap?&lt;/STRONG&gt;&lt;BR /&gt;- To get rid of the &lt;FONT face="courier new,courier"&gt;Type Properties()&lt;/FONT&gt;, the user simply needs to revert (or overwrite) one of the settings:&lt;BR /&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6386180376112w736h540r331" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6386180376112" 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-6386180376112w736h540r331');  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/6386180376112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;- Even without the&amp;nbsp;&lt;FONT face="courier new,courier"&gt;Type Properties() ,&amp;nbsp;&lt;/FONT&gt;the other items still share the inherited setting&lt;FONT face="courier new,courier"&gt; -&amp;nbsp;&lt;/FONT&gt;&amp;nbsp;it is hard-coded for each of them in the Dispatch command. So, to remove the inherited setting from all items, the user has to revert * ) them all.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;*) Caution with&lt;STRONG&gt; revert:&lt;/STRONG&gt;&lt;BR /&gt;Items with reverted (=default) settings become susceptible to inheritance via the 'Type Properties' function again.&lt;/P&gt;
&lt;/DIV&gt;</description>
      <pubDate>Thu, 26 Mar 2026 21:40:56 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/917699#M107731</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-26T21:40:56Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/917716#M107735</link>
      <description>&lt;P&gt;Items with their own settings are protected from unwanted inheritance:&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6386033269112w678h426r801" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6386033269112" 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-6386033269112w678h426r801');  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/6386033269112"&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;So, the user has to apply special settings to EVERY entry in the legend to protect them from the spillover.&lt;/P&gt;
&lt;P&gt;important in this context:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;
&lt;P&gt;&lt;STRONG&gt;default&lt;/STRONG&gt; settings (marker = dot, color=black, line style: solid) are not saved *&amp;nbsp;&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;-&amp;gt; Standard dot, black and solid line? -&amp;gt; a big no-go until a bugfix is available.&lt;/P&gt;</description>
      <pubDate>Fri, 05 Dec 2025 21:06:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/917716#M107735</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-05T21:06:17Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/918038#M107767</link>
      <description>&lt;P&gt;Interesting:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Settings for Bar Graphs&amp;nbsp; and Box Plots are&amp;nbsp; NOT stored to &lt;FONT face="courier new,courier"&gt;Type Properties()&lt;/FONT&gt;.&lt;BR /&gt;&lt;BR /&gt;&lt;/LI&gt;
&lt;LI&gt;Bar Graphs&amp;nbsp; and Box Plots&amp;nbsp; ignore &lt;FONT face="courier new,courier"&gt;Type Properties()&lt;BR /&gt;&lt;/FONT&gt;[if a graph is changed from Marker to Bar Graph, there will be a setting like&amp;nbsp;&lt;FONT face="courier new,courier"&gt;&lt;BR /&gt;Type Properties( 0, "Bar", {Fill Color( 43 )} ),&lt;BR /&gt;&lt;/FONT&gt;but it's ignored by the Bar Graph]&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6386189229112w644h540r51" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6386189229112" 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-6386189229112w644h540r51');  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/6386189229112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Dec 2025 12:05:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/918038#M107767</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-08T12:05:22Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/918621#M107800</link>
      <description>&lt;P&gt;bug confirmed by JMP support [TS-&lt;SPAN data-olk-copy-source="MessageBody"&gt;00256956]&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;Important detail: The surprising behavior gets active when the graph is &lt;U&gt;created via JSL&lt;/U&gt;.&lt;BR /&gt;It's not there the fist time when the graph is created via the GUI.&lt;/P&gt;</description>
      <pubDate>Tue, 09 Dec 2025 19:13:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/918621#M107800</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-12-09T19:13:16Z</dc:date>
    </item>
    <item>
      <title>Re: consistent marker and style control</title>
      <link>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/937598#M109283</link>
      <description>&lt;P&gt;-&amp;gt; fixed.&lt;/P&gt;</description>
      <pubDate>Thu, 26 Mar 2026 21:44:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/consistent-marker-and-style-control-type-properties/m-p/937598#M109283</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2026-03-26T21:44:14Z</dc:date>
    </item>
  </channel>
</rss>

