<?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: JMP 14: Changing Axis Title of multiple control charts in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/JMP-14-Changing-Axis-Title-of-multiple-control-charts/m-p/394533#M64490</link>
    <description>&lt;P&gt;Are you able to attach a sample table, along with a saved script of a sample control chart report? That would help us get a handle on what exactly is your situation. Also, please show us what you mean by "title", as there may be more than one spot we could interpret as a title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Brady&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 18 Jun 2021 16:29:27 GMT</pubDate>
    <dc:creator>brady_brady</dc:creator>
    <dc:date>2021-06-18T16:29:27Z</dc:date>
    <item>
      <title>JMP 14: Changing Axis Title of multiple control charts</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-14-Changing-Axis-Title-of-multiple-control-charts/m-p/394478#M64484</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have control charts created from multiple variables however I want to change the axis title so they match. Is there a quick way to do this without manually changing them. I've tried holding ctrl while doing so however that seems to change the x axis title as for some reason , any ideas, thanks?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:15:15 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-14-Changing-Axis-Title-of-multiple-control-charts/m-p/394478#M64484</guid>
      <dc:creator>Mo_Hoque_95</dc:creator>
      <dc:date>2023-06-11T11:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 14: Changing Axis Title of multiple control charts</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-14-Changing-Axis-Title-of-multiple-control-charts/m-p/394533#M64490</link>
      <description>&lt;P&gt;Are you able to attach a sample table, along with a saved script of a sample control chart report? That would help us get a handle on what exactly is your situation. Also, please show us what you mean by "title", as there may be more than one spot we could interpret as a title.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Brady&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 18 Jun 2021 16:29:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-14-Changing-Axis-Title-of-multiple-control-charts/m-p/394533#M64490</guid>
      <dc:creator>brady_brady</dc:creator>
      <dc:date>2021-06-18T16:29:27Z</dc:date>
    </item>
    <item>
      <title>Re: JMP 14: Changing Axis Title of multiple control charts</title>
      <link>https://community.jmp.com/t5/Discussions/JMP-14-Changing-Axis-Title-of-multiple-control-charts/m-p/394707#M64520</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14305"&gt;@Mo_Hoque_95&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;Brady might have a method to do this simply, but the only way I know how to do this easily is with a script, especially if you have a lot of control charts. You did not mention if you are using the legacy Control Chart UI&amp;nbsp; or the Control Chart Builder UI or something else to create your control charts. Below, this script opens a JMP sample data table, creates legacy control charts, then customizes all x axis labels. //======== segments the JSL.&amp;nbsp; The second example uses the control chart builder UI.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Good Luck! I hope there is a simple alternate method.&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/Quality Control/Steam Turbine Historical.jmp");

//==========JMP 14 Legacy Control Charts ==================================
// Saved the script of my control chart window to a script window
// Assigned the Control Chart report to cc using cc=
cc = Control Chart(
	Group Size( 1 ),
	KSigma( 3 ),
	Chart Col( :Fuel, Individual Measurement ),
	Chart Col( :Steam Flow, Individual Measurement ),
	Chart Col( :Steam Temp, Individual Measurement ),
	Chart Col( :MW, Individual Measurement ),
	Chart Col( :Cool Temp, Individual Measurement ),
	Chart Col( :Pressure, Individual Measurement )
);

//xpath creates a list of references to each box. Note the X or sequence 
// AxisBox might have a different ID depending upon your use: Legacy Control Chart or Control Chart Builder
axx = cc &amp;lt;&amp;lt;  xpath("//AxisBox[@charID='1']/TextEditBox");

//now send a few customizing messages to all these axes 
axx &amp;lt;&amp;lt; {Set Font Size( 12 ), Set Font Style( "Bold" ), Font Color( 19 ),
			Set Text( " Samples May 24 - Jun20" )};


//================== JMP 14 Using Control Chart Builder===============================================================
//JMP 15 and later versions have a better structure for X axis labels, I find the graph structure strange in v14
ccb14 = Control Chart Builder(
	Show Capability( 0 ),
	Variables( Y( :Fuel, :Steam Flow, :Steam Temp, :MW, :Cool Temp, :Pressure ) ),
	Chart( Position( 1 ), Limits( Sigma( "Moving Range" ) ) ),
	Chart( Position( 2 ), Limits( Sigma( "Moving Range" ) ) )
);
axxb14= ccb14 &amp;lt;&amp;lt;  xpath("//GraphBuilderTitleBox/TextEditBox");

//Every 3rd GraphTitleBox is the Xaxis or Subgroup axis 

For(i=3, i&amp;lt;=nitems(axxb14), i=i+5,
	axxb14[i]&amp;lt;&amp;lt;  {Set Font Size( 12 ), Set Font Style( "Bold" ), Font Color( 19 ),
			Set Text( " Samples May 24 - Jun20" )};
);


//========================JMP 15========================================================
/*
//It's my opinion, JMP 15 has better structure references , AxisBox for Subgroup
//this code is commented out since you are working with JMP14
ccb15 = Control Chart Builder(
	Variables Y( :Fuel, :Steam Flow, :Steam Temp, :MW, :Cool Temp, :Pressure ) );
axxb15= ccb15 &amp;lt;&amp;lt;  xpath("//AxisBox['Subgroup']/TextEditBox");

axxb15 &amp;lt;&amp;lt; {Set Font Size( 12 ), Set Font Style( "Bold" ), Font Color( 19 ),
			Set Text( " Samples May 24 - Jun20" )};

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Jun 2021 10:06:03 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/JMP-14-Changing-Axis-Title-of-multiple-control-charts/m-p/394707#M64520</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2021-06-21T10:06:03Z</dc:date>
    </item>
  </channel>
</rss>

