<?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 copy and paste the Y-axis settings to all the CDF plots in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910121#M106896</link>
    <description>&lt;P&gt;in JMP Version 16.2.0, I have several CDF plots in one window, if i want to copy the Y-axis of 1st plot and paste to all of plots at one shot, how can i do it?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i dont want to paste it one by one, i want to paste all of them at one shot.&lt;/P&gt;
&lt;P&gt;in general, we use "Ctrl" button to make it,&amp;nbsp; like as paste the Y-axis for Biv fit plots, but for CDF plot, if we do the same way, the X-axis settings are also pasted at the same time.&lt;/P&gt;
&lt;P&gt;How can I fix this?&amp;nbsp;I scratched my hair crazy, but it didn’t help!!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Yajing_0-1761620576190.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/85873i5FEB9A698454A832/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Yajing_0-1761620576190.png" alt="Yajing_0-1761620576190.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Tue, 28 Oct 2025 03:07:03 GMT</pubDate>
    <dc:creator>Yajing</dc:creator>
    <dc:date>2025-10-28T03:07:03Z</dc:date>
    <item>
      <title>copy and paste the Y-axis settings to all the CDF plots</title>
      <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910121#M106896</link>
      <description>&lt;P&gt;in JMP Version 16.2.0, I have several CDF plots in one window, if i want to copy the Y-axis of 1st plot and paste to all of plots at one shot, how can i do it?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i dont want to paste it one by one, i want to paste all of them at one shot.&lt;/P&gt;
&lt;P&gt;in general, we use "Ctrl" button to make it,&amp;nbsp; like as paste the Y-axis for Biv fit plots, but for CDF plot, if we do the same way, the X-axis settings are also pasted at the same time.&lt;/P&gt;
&lt;P&gt;How can I fix this?&amp;nbsp;I scratched my hair crazy, but it didn’t help!!&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Yajing_0-1761620576190.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/85873i5FEB9A698454A832/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Yajing_0-1761620576190.png" alt="Yajing_0-1761620576190.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 03:07:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910121#M106896</guid>
      <dc:creator>Yajing</dc:creator>
      <dc:date>2025-10-28T03:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: copy and paste the Y-axis settings to all the CDF plots</title>
      <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910136#M106897</link>
      <description>&lt;P&gt;If broadcasting doesn't work properly, you might have to "improve it" with some JSL. Below is one example of what you could possibly do&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

abs = Current Report() &amp;lt;&amp;lt; XPath("(//OutlineBox[text()='CDF Plot']//AxisBox)");

abs[1] &amp;lt;&amp;lt; Copy Axis Settings;
abs[1::N Items(abs)::2] &amp;lt;&amp;lt; Paste Axis Settings;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Oct 2025 05:16:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910136#M106897</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-28T05:16:34Z</dc:date>
    </item>
    <item>
      <title>Re: copy and paste the Y-axis settings to all the CDF plots</title>
      <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910137#M106898</link>
      <description>&lt;P&gt;and maybe in addition:&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;x= abs[2] &amp;lt;&amp;lt; Copy Axis Settings;
abs[2::N Items(abs)::2] &amp;lt;&amp;lt; Paste Axis Settings;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 28 Oct 2025 05:30:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910137#M106898</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-28T05:30:10Z</dc:date>
    </item>
    <item>
      <title>Re: copy and paste the Y-axis settings to all the CDF plots</title>
      <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910156#M106902</link>
      <description>&lt;P&gt;&lt;SPAN&gt;jthi,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;Thank you very much, it works now.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;may i ask one more question: how can i make this script into a right-click command when i right-click the Y-axis each time. i think it would be more covenient to be used. Thanks&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 07:39:07 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910156#M106902</guid>
      <dc:creator>Yajing</dc:creator>
      <dc:date>2025-10-28T07:39:07Z</dc:date>
    </item>
    <item>
      <title>Re: copy and paste the Y-axis settings to all the CDF plots</title>
      <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910157#M106903</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hogi,&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;thank you also. i also have another question to&amp;nbsp;&lt;SPAN&gt;jthi and you, i really apprieciate it if you can help answer.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;the question is : how can i make this script into a right-click command when i right-click the Y-axis each time. i think it would be more covenient to be used. Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 07:41:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910157#M106903</guid>
      <dc:creator>Yajing</dc:creator>
      <dc:date>2025-10-28T07:41:08Z</dc:date>
    </item>
    <item>
      <title>Re: copy and paste the Y-axis settings to all the CDF plots</title>
      <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910159#M106904</link>
      <description>&lt;P&gt;I don't think you can do that, but you could make a menu item or toolbar item to make it slightly easier to use.&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 08:07:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910159#M106904</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-28T08:07:01Z</dc:date>
    </item>
    <item>
      <title>Re: copy and paste the Y-axis settings to all the CDF plots</title>
      <link>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910163#M106905</link>
      <description>&lt;P&gt;actually, i already done that with the way.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 28 Oct 2025 09:01:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/copy-and-paste-the-Y-axis-settings-to-all-the-CDF-plots/m-p/910163#M106905</guid>
      <dc:creator>Yajing</dc:creator>
      <dc:date>2025-10-28T09:01:14Z</dc:date>
    </item>
  </channel>
</rss>

