<?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: Customize graph in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Customize-graph/m-p/66350#M34404</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11534"&gt;@Johnanderson&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There isn't a way to broadcast a selection in the customize panel the way you can within a report (i.e. holding the control, or command key). When I have to make changes like this when there are hundreds of lines to customize&amp;nbsp;I usually resort to scripting. Have you used JMP scripting before? With a few modifications you could accomplish this with the following script:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open("$SAMPLE_DATA/Cholesterol Stacked.jmp");

//launch the oneway analysis
ow = Oneway(
	Y( :Y ),
	X( :Time ),
	Matching Column( :Patient ),
	X Axis Proportional( 0 ),
	Matching Lines( 1 ),
);

//wait for 2 sec so you can see the change
Wait(2);

//make a referernce to the frame that's holding the lines
owFB = Report( ow )[Framebox( 1 )];

//loop through from 1 to 20 (patients) and set the line style
for(i=1,i&amp;lt;=20,i++,
	owFB &amp;lt;&amp;lt; DispatchSeg(LineSeg(i), {Line Style("Dotted")})
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To make this work for your situation you would need to replace the analysis script I used with your own, and modify the number of lines that need to be styled (I had 20&amp;nbsp;sets in this example).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 03 Aug 2018 14:08:11 GMT</pubDate>
    <dc:creator>jules</dc:creator>
    <dc:date>2018-08-03T14:08:11Z</dc:date>
    <item>
      <title>Customize graph</title>
      <link>https://community.jmp.com/t5/Discussions/Customize-graph/m-p/66162#M34378</link>
      <description>&lt;P&gt;Dear JMP Experts,&lt;/P&gt;&lt;P&gt;I would like to inquire about the Fit Y by X&amp;gt;customize graph pop up window (bellow). Is there any trick that can help to change, color or the line style for all the lines at once? I know that I can fit multiple correlations, for example, by holding the key Control. Is there something similar here? Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Capture.PNG" style="width: 589px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/11837iAAA0818F3F498577/image-dimensions/589x762?v=v2" width="589" height="762" role="button" title="Capture.PNG" alt="Capture.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Aug 2018 19:47:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Customize-graph/m-p/66162#M34378</guid>
      <dc:creator>Johnanderson</dc:creator>
      <dc:date>2018-08-02T19:47:57Z</dc:date>
    </item>
    <item>
      <title>Re: Customize graph</title>
      <link>https://community.jmp.com/t5/Discussions/Customize-graph/m-p/66350#M34404</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/11534"&gt;@Johnanderson&lt;/a&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There isn't a way to broadcast a selection in the customize panel the way you can within a report (i.e. holding the control, or command key). When I have to make changes like this when there are hundreds of lines to customize&amp;nbsp;I usually resort to scripting. Have you used JMP scripting before? With a few modifications you could accomplish this with the following script:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Open("$SAMPLE_DATA/Cholesterol Stacked.jmp");

//launch the oneway analysis
ow = Oneway(
	Y( :Y ),
	X( :Time ),
	Matching Column( :Patient ),
	X Axis Proportional( 0 ),
	Matching Lines( 1 ),
);

//wait for 2 sec so you can see the change
Wait(2);

//make a referernce to the frame that's holding the lines
owFB = Report( ow )[Framebox( 1 )];

//loop through from 1 to 20 (patients) and set the line style
for(i=1,i&amp;lt;=20,i++,
	owFB &amp;lt;&amp;lt; DispatchSeg(LineSeg(i), {Line Style("Dotted")})
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;To make this work for your situation you would need to replace the analysis script I used with your own, and modify the number of lines that need to be styled (I had 20&amp;nbsp;sets in this example).&amp;nbsp;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I hope this helps!&lt;/P&gt;
&lt;P&gt;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026"&gt;@jules&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 14:08:11 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Customize-graph/m-p/66350#M34404</guid>
      <dc:creator>jules</dc:creator>
      <dc:date>2018-08-03T14:08:11Z</dc:date>
    </item>
    <item>
      <title>Re: Customize graph</title>
      <link>https://community.jmp.com/t5/Discussions/Customize-graph/m-p/66470#M34425</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;A href="https://community.jmp.com/t5/user/viewprofilepage/user-id/2026" target="_blank"&gt;@julian&lt;/A&gt;&lt;SPAN&gt;&amp;nbsp;, I appreciate your response. I never used scriting in JMP, as all the process that I conduct are strait forward. I will consider using&amp;nbsp;scritping going forward. Many thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 03 Aug 2018 19:34:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Customize-graph/m-p/66470#M34425</guid>
      <dc:creator>Johnanderson</dc:creator>
      <dc:date>2018-08-03T19:34:35Z</dc:date>
    </item>
  </channel>
</rss>

