<?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 match spline line color=marker color? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/43770#M25293</link>
    <description>&lt;P&gt;You have to send the message for changing the line color&amp;nbsp;to the curve in the plot that represents the fit. This script is the same as clicking on the red triangle for that fit beneath the plot and selecting Line Color.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

biv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ) );

biv &amp;lt;&amp;lt; Fit Spline( 10 );

biv &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Line Color( "Yellow" ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that the message to Curve must be enclosed in parentheses and then this expression is sent to the analysis layer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 29 Aug 2017 16:23:49 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2017-08-29T16:23:49Z</dc:date>
    <item>
      <title>How to match spline line color=marker color?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/43646#M25252</link>
      <description>&lt;P&gt;Using a bivariate, is there any easy way to match the spline line color to that of the marker color?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;In this way my example&amp;nbsp;"widget1" has a green marker, but its spline line color is red.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So I thought I'd just read in the&amp;nbsp;"widget1" marker color then assign it as the spline line color. (to try and match the two)&amp;nbsp; But&amp;nbsp;its marker color (green/light green) gives me a large negative number like&amp;nbsp;-3780931.&amp;nbsp; Now when I try assigning say -3780931 to the spline line (Line Color()) it does nothing.&amp;nbsp; Can I convert this large negative number into something meaningful like "Light Green", etc.&amp;nbsp; I'm using JMP Default for the Legend which I believe assigns the marker colors.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;DJ&lt;/P&gt;</description>
      <pubDate>Fri, 25 Aug 2017 16:29:17 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/43646#M25252</guid>
      <dc:creator>djhanson</dc:creator>
      <dc:date>2017-08-25T16:29:17Z</dc:date>
    </item>
    <item>
      <title>Re: How to match spline line color=marker color?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/43770#M25293</link>
      <description>&lt;P&gt;You have to send the message for changing the line color&amp;nbsp;to the curve in the plot that represents the fit. This script is the same as clicking on the red triangle for that fit beneath the plot and selecting Line Color.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

biv = dt &amp;lt;&amp;lt; Bivariate( Y( :weight ), X( :height ) );

biv &amp;lt;&amp;lt; Fit Spline( 10 );

biv &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Line Color( "Yellow" ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that the message to Curve must be enclosed in parentheses and then this expression is sent to the analysis layer.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2017 16:23:49 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/43770#M25293</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2017-08-29T16:23:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to match spline line color=marker color?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/43771#M25294</link>
      <description>&lt;P&gt;&lt;EM&gt;To address your specific request about the negative number color number that was retireved, you can use it directly in the code that Mark showed&lt;/EM&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;biv &amp;lt;&amp;lt; (Curve[1] &amp;lt;&amp;lt; Line Color( -3780931 ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;EM&gt;and it will change the spline value to the green color that it represents.&lt;/EM&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Aug 2017 16:52:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/43771#M25294</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2017-08-29T16:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to match spline line color=marker color?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/762984#M94375</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I have similar issue,&lt;/P&gt;&lt;P&gt;when I set up spline and legend the colors are OK.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but when I use local filter- the legend color is changing but the spline remain the same.&lt;/P&gt;&lt;P&gt;is the a way to keep legend color and spline color? or make them the same in filter cases?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2024 10:08:05 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-match-spline-line-color-marker-color/m-p/762984#M94375</guid>
      <dc:creator>Hamal22</dc:creator>
      <dc:date>2024-06-10T10:08:05Z</dc:date>
    </item>
  </channel>
</rss>

