<?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: use specific marker in Graph Builder? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/894429#M105517</link>
    <description>&lt;P&gt;Hi Hogi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've had a good look through the documentation and it's stumped me too - I was sure that there was a way via labeling the data in the table for both plots, but alas it doesn't appear to work. I'd suggest adding this one to the wishlist, and as an interim step, I'd probably create the two plots separately, then combine into a single report to show both - obviously this won't look as clean as you'd like though. Happy to mock something up to illustrate this if it helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stuart&lt;/P&gt;</description>
    <pubDate>Thu, 14 Aug 2025 16:31:33 GMT</pubDate>
    <dc:creator>Stuart_Little</dc:creator>
    <dc:date>2025-08-14T16:31:33Z</dc:date>
    <item>
      <title>use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893264#M105427</link>
      <description>&lt;P&gt;I have encountered an issue in JMP when plotting multiple levels of information in one plot.&lt;/P&gt;
&lt;P&gt;For example, the colour in the top graph is defined by age, while the colour in the bottom graph is defined by sex.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;By default, JMP uses the same marker type for all plots.&lt;/P&gt;
&lt;P&gt;This makes it difficult for the human eye to interpret the information in the legend and in the plot ('Is the purple dot 15 or F?'); even the human brain needs time to process the information.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;"I am in the upper plot - with ages. I can ignore the F &amp;amp; M and focus on the numbers in the legend. Purple corresponds to "age=15".&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1754644128440.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79911i44B7B45CEA23203F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1754644128440.png" alt="hogi_2-1754644128440.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;you can use this script to optimize the plot on your own:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
Graph Builder(
	Size( 485, 480 ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables(
		X( :height ),
		Y( :weight ),
		Y( :weight ),
		Color( :age ),
		Color( :sex )
	),
	Elements( Position( 1, 1 ), Points( X, Y, Color( 1 ) ) ),
	Elements( Position( 1, 2 ), Points( X, Y, Color( 2 ) ) )
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;BR /&gt;&lt;STRONG&gt;NB:&lt;/STRONG&gt;&lt;BR /&gt;&lt;EM&gt;This example was chosen to highlight the problem.&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;Clearly, for this example, more meaningful settings would be to have just one plot and sex = marker |&amp;nbsp;age= color&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;... which is not possible for the real, more complex application case.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 10:38:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893264#M105427</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-08T10:38:41Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893275#M105428</link>
      <description>&lt;P&gt;much better:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1754644305731.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79912iFB940EFD44B296F0/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1754644305731.png" alt="hogi_0-1754644305731.png" /&gt;&lt;/span&gt;&lt;BR /&gt;Here, the human eye has the possibility to analyze the information with minimal processing by the human brain.&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;This plot is great for the audience - but rather difficult to create.&lt;BR /&gt;&lt;BR /&gt;- what is the minimum number of mouse clicks to get this plot?&lt;/P&gt;
&lt;P&gt;- what is the best JSL approach to get this plot?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Maybe something like&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Elements( Position( 1, 1 ), Points( X, Y, Color( 1 ), Marker("circle") ) )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 11:22:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893275#M105428</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-08T11:22:27Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893278#M105429</link>
      <description>&lt;P&gt;Yesterday two new students have been added to the class:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;current data table() &amp;lt;&amp;lt; add row({:sex="M",age=20, height=55, weight=160});
current data table() &amp;lt;&amp;lt; add row({:sex="F",age=18, height=55, weight=150})&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;... are&amp;nbsp; ages = 18 | 20 displayed as circles?&lt;/P&gt;</description>
      <pubDate>Fri, 08 Aug 2025 10:42:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893278#M105429</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-08T10:42:30Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893857#M105466</link>
      <description>&lt;P&gt;changing&amp;nbsp;the marker setting manually:&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6376823770112w658h524r932" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6376823770112" 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-6376823770112w658h524r932');  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/6376823770112"&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;adding 2 new rows:&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6376821119112w364h382r264" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6376821119112" 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-6376821119112w364h382r264');  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/6376821119112"&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;P&gt;there seems to be some improvement with JMP19:&lt;/P&gt;
&lt;P&gt;&lt;div class="lia-vid-container video-embed-center"&gt;&lt;div id="lia-vid-6376821036112w758h518r14" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6376821036112" 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-6376821036112w758h518r14');  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/6376821036112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;</description>
      <pubDate>Tue, 12 Aug 2025 11:02:36 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893857#M105466</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-12T11:02:36Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893872#M105468</link>
      <description>&lt;P&gt;Hi Hogi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I think I'd approach this using the "Color or Mark by Column" options to set the Markers initially. I'd then use this as the basis for an update script when new data is added - if the data update is automated via a script then it should be easy to include in one step, but manual data updating may need manual running of the update script.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The script below should illustrate this process&lt;/P&gt;
&lt;DIV&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;// Open sample data table
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

// Add markers and colour using Color or Mark by column

dt &amp;lt;&amp;lt; Color or Mark by Column(
    	:sex,
    	Color Theme( "JMP Default" ),
    	Marker Theme( "Paired" )
    );

// Create plot to visualise issue

dt &amp;lt;&amp;lt; Graph Builder(
    	Size( 570, 444 ),
    	Show Control Panel( 0 ),
    	Variables( X( :height ), Y( :weight ), Group Y( :sex ) ),
    	Elements( Points( X, Y, Legend( 2 ) ) )
    );

// Add Update Marker script to table for future use

dt &amp;lt;&amp;lt; New Script(
	"Update Markers",
	Data Table ("Big Class") &amp;lt;&amp;lt; Color or Mark by Column(
		:sex,
		Color Theme( "JMP Default" ),
		Marker Theme( "Paired" )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;
Hope that helps,&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;Stuart&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;
&lt;DIV&gt;&amp;nbsp;&lt;/DIV&gt;</description>
      <pubDate>Tue, 12 Aug 2025 09:28:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893872#M105468</guid>
      <dc:creator>Stuart_Little</dc:creator>
      <dc:date>2025-08-12T09:28:13Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893884#M105469</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/27303"&gt;@Stuart_Little&lt;/a&gt;&amp;nbsp;, thanks for your suggestion.&lt;BR /&gt;&lt;BR /&gt;Unfortunately, your script produces this graph:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1754995241009.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/80163i3D2EAC0B08F68187/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1754995241009.png" alt="hogi_1-1754995241009.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This is not the graph which is needed.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;The task:&lt;BR /&gt;&lt;EM&gt;Specify a marker type for a plot (i.e. all the data points in that plot) -- without affecting any other plot.&lt;/EM&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Row states are ideal for:&lt;BR /&gt;&lt;EM&gt;Specify a marker type for some data points - simultaneously for every plot.&lt;BR /&gt;&lt;BR /&gt;&lt;/EM&gt;Is there a trick how I can use Marker States for my purpose?&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2025 11:12:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893884#M105469</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-12T11:12:20Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893902#M105473</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Maybe:&lt;BR /&gt;I can use rows states and define the marker state &lt;STRONG&gt;for every row as "circle"&lt;/STRONG&gt;.&lt;BR /&gt;As expected, all data points in the first plot are "circles"&amp;nbsp; : )&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;- but it does more than that! It also affects the he bottom plot - and all the other plots which were created from the same data table. [this is why I don't like Row States!]&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;We are somehow back with the original problem: &lt;STRONG&gt;same markers in both plots&lt;/STRONG&gt;&lt;BR /&gt;(just circles instead of dots).&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_2-1754996415983.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/80167iC33A35F4AD2A0B2A/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_2-1754996415983.png" alt="hogi_2-1754996415983.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;The task changed to:&lt;BR /&gt;How can I &lt;STRONG&gt;reset&lt;/STRONG&gt; the markers for male AND female in the bottom plot ?&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-6376827838112w638h488r623" class="lia-video-brightcove-player-container"&gt;&lt;video-js data-video-id="6376827838112" 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-6376827838112w638h488r623');  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/6376827838112"&gt;(view in My Videos)&lt;/a&gt;&lt;/div&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 12 Aug 2025 11:27:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/893902#M105473</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-12T11:27:29Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/894116#M105501</link>
      <description>&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/27303"&gt;@Stuart_Little&lt;/a&gt;&amp;nbsp;?&lt;/P&gt;</description>
      <pubDate>Wed, 13 Aug 2025 14:59:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/894116#M105501</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-13T14:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/894429#M105517</link>
      <description>&lt;P&gt;Hi Hogi,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I've had a good look through the documentation and it's stumped me too - I was sure that there was a way via labeling the data in the table for both plots, but alas it doesn't appear to work. I'd suggest adding this one to the wishlist, and as an interim step, I'd probably create the two plots separately, then combine into a single report to show both - obviously this won't look as clean as you'd like though. Happy to mock something up to illustrate this if it helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Stuart&lt;/P&gt;</description>
      <pubDate>Thu, 14 Aug 2025 16:31:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/894429#M105517</guid>
      <dc:creator>Stuart_Little</dc:creator>
      <dc:date>2025-08-14T16:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: use specific marker in Graph Builder?</title>
      <link>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/894464#M105518</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/27303"&gt;@Stuart_Little&lt;/a&gt;&amp;nbsp;,&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;Thanks for confirming and for offering a workaround – really appreciate that. It’s a bit surprising that something as fundamental as consistent marker control isn’t already built in JMP : (&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/27303"&gt;@Stuart_Little&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;and as an interim step, I'd probably create the two plots separately, then combine into a single report to show both&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;The actual application case is an overlapping plot, with points and circles - and a point inside a circle shows a perfect match.&lt;BR /&gt;Unfortunately, I have to invest a lot of effort to get points inside circles&amp;nbsp; - and not points hiding behind points.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;I'd suggest adding this one to the wishlist ...&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Here it is:&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;&lt;BR /&gt;&lt;BR /&gt;As an alternative:&lt;BR /&gt;The idea of a&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;Value Markers&lt;/STRONG&gt;&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;column property (like&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;EM&gt;Value Colors&lt;/EM&gt;) has been on the Wish List for a while: :backhand_index_pointing_right:&lt;/img&gt;&lt;SPAN&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;/SPAN&gt;. It looks like an easy solution and would save a lot of manual steps.&lt;BR /&gt;With 21 Kudos it's among the top 2% pending features in JMP.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_0-1755191857828.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/80354i84F92587A5164B81/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_0-1755191857828.png" alt="hogi_0-1755191857828.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 15 Aug 2025 13:18:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/use-specific-marker-in-Graph-Builder/m-p/894464#M105518</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-08-15T13:18:00Z</dc:date>
    </item>
  </channel>
</rss>

