<?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: Vertical text for group labels in Graph Builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/311134#M56436</link>
    <description>&lt;P&gt;Thanks Jim for taking a look! Appreciated! However this seems not to work if the variable weight (power in my case) is continuous and age (location in my case) is ordinal/character. Such variable type definition is necessary in my case because I want to show for each age (location in my case) the line fit of height (concentration in my case) versus weight (power in my case). Or do you still see another workaround? Many thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards!&lt;BR /&gt;&lt;BR /&gt;Yawovi&lt;/P&gt;</description>
    <pubDate>Tue, 22 Sep 2020 19:23:29 GMT</pubDate>
    <dc:creator>Yawovi</dc:creator>
    <dc:date>2020-09-22T19:23:29Z</dc:date>
    <item>
      <title>Vertical text for group labels in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/310340#M56370</link>
      <description>&lt;P&gt;Hello all!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;couldn't find an answer to this one, although it seems like an easy one...How can I make the text of the group labels vertical? See picture below (they're by default horizontal)...is there a way via the Graph Builder GUI or do I have to script? Below the generated script for my graph (anything I could add?). Any help much appreciated! thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yawovi&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 745, 526 ),
	Variables(
		X( :Power ),
		Y( :Name( "Concentration" ) ),
		Group X( :Location ),
		Overlay( :Color )
	),
	Elements(
		Points( X, Y, Legend( 7 ) ),
		Line Of Fit( X, Y, Legend( 12 ), Equation( 1 ) )
	)
)&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="group labels.PNG" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26886iCFE276DC9E97FB87/image-size/medium?v=v2&amp;amp;px=400" role="button" title="group labels.PNG" alt="group labels.PNG" /&gt;&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:05:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/310340#M56370</guid>
      <dc:creator>Yawovi</dc:creator>
      <dc:date>2023-06-11T11:05:57Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical text for group labels in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/310506#M56375</link>
      <description>&lt;P&gt;I don't believe that you can change the orientation of the group labels, however you may be able to do a little manipulation and get a graph that is similar to what you want.&amp;nbsp; I added some missing value rows, and manually added some reference lines, both of which could be programmatically added if you move ahead with this methodology.&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="replacegrouping.PNG" style="width: 607px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/26891iE214FD857A925146/image-size/large?v=v2&amp;amp;px=999" role="button" title="replacegrouping.PNG" alt="replacegrouping.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = current data table();

Graph Builder(
	Size( 528, 464 ),
	Show Control Panel( 0 ),
	Variables( X( :age ), X( :weight, Position( 1 ) ), Y( :height ), Color( :age ) ),
	Elements(
		Points( X( 1 ), X( 2 ), Y, Legend( 137 ) ),
		Line( X( 1 ), X( 2 ), Y, Legend( 138 ), Missing Values( "No Connection" ) )
	),
	SendToReport(
		Dispatch(
			{},
			"age",
			ScaleBox,
			{Add Ref Line( 8, "Solid", "Black", "", 1 ),
			Add Ref Line( 16, "Solid", "Black", "", 1 ),
			Add Ref Line( 28, "Solid", "Black", "", 1 ),
			Add Ref Line( 36, "Solid", "Black", "", 1 ),
			Add Ref Line( 44, "Solid", "Black", "", 1 ),
			Add Ref Line( 40, "Solid", "Black", "", 1 )}
		),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				137,
				Base( 0, 0, 0, Item ID( "12", 1 ) ),
				Base( 1, 0, 0, Item ID( "13", 1 ) ),
				Base( 2, 0, 0, Item ID( "14", 1 ) ),
				Base( 3, 0, 0, Item ID( "15", 1 ) ),
				Base( 4, 0, 0, Item ID( "16", 1 ) ),
				Base( 5, 0, 0, Item ID( "17", 1 ) )
			)}
		)
	)
);
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 21 Sep 2020 21:08:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/310506#M56375</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-09-21T21:08:52Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical text for group labels in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/311134#M56436</link>
      <description>&lt;P&gt;Thanks Jim for taking a look! Appreciated! However this seems not to work if the variable weight (power in my case) is continuous and age (location in my case) is ordinal/character. Such variable type definition is necessary in my case because I want to show for each age (location in my case) the line fit of height (concentration in my case) versus weight (power in my case). Or do you still see another workaround? Many thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Best regards!&lt;BR /&gt;&lt;BR /&gt;Yawovi&lt;/P&gt;</description>
      <pubDate>Tue, 22 Sep 2020 19:23:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/311134#M56436</guid>
      <dc:creator>Yawovi</dc:creator>
      <dc:date>2020-09-22T19:23:29Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical text for group labels in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/311248#M56443</link>
      <description>If you are fitting a line, then my work around will not work.  However, all is not lost.  A script could be written to run each of the groupings separately and then to put them together side by side.  It would take a bit of work, but it could be done.  Depending on your level of experience with JSL, would be the effort calculator.</description>
      <pubDate>Tue, 22 Sep 2020 21:26:30 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/311248#M56443</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2020-09-22T21:26:30Z</dc:date>
    </item>
    <item>
      <title>Re: Vertical text for group labels in Graph Builder</title>
      <link>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/311461#M56453</link>
      <description>How about switching Power to Group X and Location to X-axis.&lt;BR /&gt;X-axis has the capability to change the label direction.&lt;BR /&gt;Hope it helps</description>
      <pubDate>Wed, 23 Sep 2020 02:41:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Vertical-text-for-group-labels-in-Graph-Builder/m-p/311461#M56453</guid>
      <dc:creator>ThuongLe</dc:creator>
      <dc:date>2020-09-23T02:41:43Z</dc:date>
    </item>
  </channel>
</rss>

