<?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 make control/trend charts with multiple x axis variables? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43306#M25071</link>
    <description>&lt;P&gt;Unless I really need to, I tend not to worry about interpreting the 'low level' code that JMP generates for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the example above, exposing the Control Panel and dragging 'age' to the 'Color' drop zone, I made:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-08-16 at 12.03.45.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/7207i9DDB70F16EC1145F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-08-16 at 12.03.45.png" alt="Screen Shot 2017-08-16 at 12.03.45.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The resulting legend is selctable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, looking at the options on the left and deselecting one, I made:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-08-16 at 12.04.17.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/7208i2CB531D04B222DD4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-08-16 at 12.04.17.png" alt="Screen Shot 2017-08-16 at 12.04.17.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;which (I think) is what you want&lt;/P&gt;</description>
    <pubDate>Wed, 16 Aug 2017 11:10:28 GMT</pubDate>
    <dc:creator>ian_jmp</dc:creator>
    <dc:date>2017-08-16T11:10:28Z</dc:date>
    <item>
      <title>How to make control/trend charts with multiple x axis variables?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43239#M25031</link>
      <description>&lt;P&gt;Hi all,&lt;/P&gt;
&lt;P&gt;I want to create a "control chart-like" graph. Essentially, it is like a control chart, but the x variables can be as many as I like. It is like the graph I attached, but with a line passing through all the points.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here are some solutions I tried but failed:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Variability Chart ==&amp;gt; I can't draw the connecting line across the points.&lt;/LI&gt;
&lt;LI&gt;Line Chart ==&amp;gt; The x variable number is limited to two.&lt;/LI&gt;
&lt;LI&gt;Graph builder ==&amp;gt; Too tedious with its unpredictable drag and drop mechanism. Also, my third variable is a date (numeric type) which is not added, no matter how hard I try to drag it at x-axis.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;Any suggestions?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you,&lt;/P&gt;
&lt;P&gt;Shaira&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="Diameter.JPG" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/7215iF0666C543A6CB578/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Diameter.JPG" alt="Diameter.JPG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 22:11:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43239#M25031</guid>
      <dc:creator>shaira</dc:creator>
      <dc:date>2017-08-16T22:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to make control/trend charts with multiple x axis variables?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43247#M25037</link>
      <description>&lt;P&gt;GraphBuilder is predictable once you get used to how the drop zones work. Take a look &lt;A href="https://www.jmp.com/en_us/search/support.html?q=graph%20zones&amp;amp;fq=siteArea%3A%22Online%20Help%22" target="_self"&gt;here&lt;/A&gt;. Running the script below shows the result in a simple case.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;NamesDefaultToHere(1);
dt = Open("$SAMPLE_DATA/Big Class.jmp");
dt &amp;lt;&amp;lt; Graph Builder(
			Size( 894, 595 ),
			Show Control Panel( 0 ),
			Variables(
				X( :age ),
				X( :sex, Position( 1 ) ),
				X( Transform Column( "Row", Ordinal, Formula( Row() ) ), Position( 1 ) ),
				Y( :height )
			),
			Elements(
				Line( X( 1 ), X( 2 ), X( 3 ), Y, Legend( 6 ) ),
				Points( X( 1 ), X( 2 ), X( 3 ), Y, Legend( 7 ) )
			)
		);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-08-15 at 11.34.03.png" style="width: 982px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/7196i38529F0BF6AC7D98/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-08-15 at 11.34.03.png" alt="Screen Shot 2017-08-15 at 11.34.03.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Dec 2018 17:55:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43247#M25037</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2018-12-04T17:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to make control/trend charts with multiple x axis variables?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43297#M25065</link>
      <description>&lt;P&gt;Thank you Ian! This is exactly what I need. Let me try this with my own data.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Shaira&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 00:52:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43297#M25065</guid>
      <dc:creator>shaira</dc:creator>
      <dc:date>2017-08-16T00:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to make control/trend charts with multiple x axis variables?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43299#M25067</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3605"&gt;@ian_jmp&lt;/a&gt; and others&lt;/P&gt;&lt;P&gt;I am trying to modify the script you sent, hence may I ask the ff questions?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Regarding these lines&lt;/P&gt;&lt;PRE class=" language-jsl"&gt;&lt;CODE class="  language-jsl"&gt;Elements&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt;
				&lt;SPAN class="token function"&gt;Line&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;2&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;3&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; Y&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; Legend&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;6&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt;
				Points&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;1&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;2&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; X&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;3&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; Y&lt;SPAN class="token punctuation"&gt;,&lt;/SPAN&gt; Legend&lt;SPAN class="token punctuation"&gt;(&lt;/SPAN&gt; &lt;SPAN class="token number"&gt;7&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt; &lt;SPAN class="token punctuation"&gt;)&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What does the number arguments mean? I.e. What do the numbers 1, 2, 3, 6, 7 mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;2. I wanted to color the points by a grouping column but maintain a single color for the connecting line, I tried doing it manually first. I ended up coloring both the points and line. I manually edited it and saved the script. The saved script looks ugly (see below). Do you know an alternative way of doing it by jsl? I am thinking of combining for loop and eval(parse(string) expressions as a backup solution.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;			{Legend Model(
				6,
				Properties( 0, {Line Color( 19 )} ),
				Properties( 1, {Line Color( 19 )} ),
				Properties( 2, {Line Color( 19 )} ),
				Properties( 3, {Line Color( 19 )} ),
				Properties( 4, {Line Color( 19 )} ),
				Properties( 5, {Line Color( 19 )} ),
				Properties( 6, {Line Color( 19 )} ),
				Properties( 7, {Line Color( 19 )} ),
				Properties( 8, {Line Color( 19 )} ),
				Properties( 9, {Line Color( 19 )} ),
				Properties( 10, {Line Color( 19 )} ),
				Properties( 11, {Line Color( 19 )} ),
				Properties( 12, {Line Color( 19 )} ),
				Properties( 13, {Line Color( 19 )} ),
				Properties( 14, {Line Color( 19 )} ),
				Properties( 15, {Line Color( 19 )} ),
				Properties( 28, {Line Color( 19 )} ),
				Properties( 29, {Line Color( 19 )} ),
				Properties( 30, {Line Color( 19 )} ),
				Properties( 31, {Line Color( 19 )} ),
				Properties( 32, {Line Color( 19 )} )
			), Legend Model(
				7,
				Base( 0, 0, 0 ),
				Base( 1, 0, 0 ),
				Base( 2, 0, 0 ),
				Base( 3, 0, 0 ),
				Base( 4, 0, 0 ),
				Base( 5, 0, 0 ),
				Base( 6, 0, 0 ),
				Base( 7, 0, 0 ),
				Base( 8, 0, 0 ),
				Base( 9, 0, 0 ),
				Base( 10, 0, 0 ),
				Base( 11, 0, 0 ),
				Base( 12, 0, 0 ),
				Base( 13, 0, 0 ),
				Base( 14, 0, 0 ),
				Base( 15, 0, 0 ),
				Base( 16, 0, 0 ),
				Base( 17, 0, 0 ),
				Base( 18, 0, 0 ),
				Base( 19, 0, 0 ),
				Base( 20, 0, 0 ),
				Base( 21, 0, 0 ),
				Base( 22, 0, 0 ),
				Base( 23, 0, 0 ),
				Base( 24, 0, 0 ),
				Base( 25, 0, 0 ),
				Base( 26, 0, 0 ),
				Base( 27, 0, 0 ),
				Base( 28, 0, 0 ),
				Base( 29, 0, 0 ),
				Base( 30, 0, 0 ),
				Base( 31, 0, 0 ),
				Base( 32, 0, 0 ),
				Properties( 0, {Line Color( 0 )} )
			)}&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;3. The legend in graph builder is static (i.e. if I click a certain group, it does not highlight the points corresponding to it). This is a really nice feature in Bivariate and Variability graphs. Is there a workaround for this? This is just minor, I can use the JMP filter to accomplish this if there is no workaround.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much,&lt;/P&gt;&lt;P&gt;Shaira&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 07:25:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43299#M25067</guid>
      <dc:creator>shaira</dc:creator>
      <dc:date>2017-08-16T07:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to make control/trend charts with multiple x axis variables?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43303#M25070</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/3605"&gt;@ian_jmp&lt;/a&gt; and others,&lt;/P&gt;&lt;P&gt;I am trying to edit the script above. Hence, the ff questions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. What does the number inputs (1, 2, 3, 6, and 7) mean?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Elements(
				Line( X( 1 ), X( 2 ), X( 3 ), Y, Legend( 6 ) ),
				Points( X( 1 ), X( 2 ), X( 3 ), Y, Legend( 7 ) )&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;2. How do I add legend box in graph builder where the colors are determined by grouping column, but the connector line is a single color?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Solutions I tried:&lt;/P&gt;&lt;P&gt;a. Manually doing it and saving the JSL script. I ended up with an ugly script below.&lt;/P&gt;&lt;P&gt;b. Not yet tried. Simplify the ugly script in (a) using for loops and Eval(parse()) functions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	SendToReport(
		Dispatch(
			{},
			"X Variable Name",
			ScaleBox,
			{Show Major Grid( 1 ), Show Minor Grid( 1 ),
			Rotated Labels( "Perpendicular" )}
		),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				6,
				Properties( 0, {Line Color( 19 )} ),
				Properties( 1, {Line Color( 19 )} ),
				Properties( 2, {Line Color( 19 )} ),
				Properties( 3, {Line Color( 19 )} ),
				Properties( 4, {Line Color( 19 )} ),
				Properties( 5, {Line Color( 19 )} ),
				Properties( 6, {Line Color( 19 )} ),
				Properties( 7, {Line Color( 19 )} ),
				Properties( 8, {Line Color( 19 )} ),
				Properties( 9, {Line Color( 19 )} ),
				Properties( 10, {Line Color( 19 )} ),
				Properties( 11, {Line Color( 19 )} ),
				Properties( 12, {Line Color( 19 )} ),
				Properties( 13, {Line Color( 19 )} ),
				Properties( 14, {Line Color( 19 )} ),
				Properties( 15, {Line Color( 19 )} ),
				Properties( 28, {Line Color( 19 )} ),
				Properties( 29, {Line Color( 19 )} ),
				Properties( 30, {Line Color( 19 )} ),
				Properties( 31, {Line Color( 19 )} ),
				Properties( 32, {Line Color( 19 )} )
			), Legend Model(
				7,
				Base( 0, 0, 0 ),
				Base( 1, 0, 0 ),
				Base( 2, 0, 0 ),
				Base( 3, 0, 0 ),
				Base( 4, 0, 0 ),
				Base( 5, 0, 0 ),
				Base( 6, 0, 0 ),
				Base( 7, 0, 0 ),
				Base( 8, 0, 0 ),
				Base( 9, 0, 0 ),
				Base( 10, 0, 0 ),
				Base( 11, 0, 0 ),
				Base( 12, 0, 0 ),
				Base( 13, 0, 0 ),
				Base( 14, 0, 0 ),
				Base( 15, 0, 0 ),
				Base( 16, 0, 0 ),
				Base( 17, 0, 0 ),
				Base( 18, 0, 0 ),
				Base( 19, 0, 0 ),
				Base( 20, 0, 0 ),
				Base( 21, 0, 0 ),
				Base( 22, 0, 0 ),
				Base( 23, 0, 0 ),
				Base( 24, 0, 0 ),
				Base( 25, 0, 0 ),
				Base( 26, 0, 0 ),
				Base( 27, 0, 0 ),
				Base( 28, 0, 0 ),
				Base( 29, 0, 0 ),
				Base( 30, 0, 0 ),
				Base( 31, 0, 0 ),
				Base( 32, 0, 0 ),
				Properties( 0, {Line Color( 0 )} )
			)}
		),
		Dispatch(
			{},
			"400",
			LegendBox,
			{Position(
				{-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1,
				-1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, -1, 0, 1,
				2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,
				21, 22, 23, 24, 25, 26, 27, 28, 29, 30, 31, 32}
			)}
		)
	)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;3. Is the legend box in graph builder really static? In Bivariate and Variability graphs, clicking the legend box highlights the points corresponding to clicked group. But, this is just minor concern. I can use the JMP filter as an alternative solution for this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for the help,&lt;/P&gt;&lt;P&gt;Shaira&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 07:39:24 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43303#M25070</guid>
      <dc:creator>shaira</dc:creator>
      <dc:date>2017-08-16T07:39:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to make control/trend charts with multiple x axis variables?</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43306#M25071</link>
      <description>&lt;P&gt;Unless I really need to, I tend not to worry about interpreting the 'low level' code that JMP generates for me.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Using the example above, exposing the Control Panel and dragging 'age' to the 'Color' drop zone, I made:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-08-16 at 12.03.45.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/7207i9DDB70F16EC1145F/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-08-16 at 12.03.45.png" alt="Screen Shot 2017-08-16 at 12.03.45.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;The resulting legend is selctable.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Then, looking at the options on the left and deselecting one, I made:&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2017-08-16 at 12.04.17.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/7208i2CB531D04B222DD4/image-size/large?v=v2&amp;amp;px=999" role="button" title="Screen Shot 2017-08-16 at 12.04.17.png" alt="Screen Shot 2017-08-16 at 12.04.17.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;which (I think) is what you want&lt;/P&gt;</description>
      <pubDate>Wed, 16 Aug 2017 11:10:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-make-control-trend-charts-with-multiple-x-axis-variables/m-p/43306#M25071</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-08-16T11:10:28Z</dc:date>
    </item>
  </channel>
</rss>

