<?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 label multiple columns to every points in Graph builder in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/47705#M27174</link>
    <description>&lt;P&gt;There might be a way to do this with row labels, but one option (albeit laborious) is to add transparent&amp;nbsp;bars with labels.&amp;nbsp; This can be done graphically by:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Start with your chart&lt;/LI&gt;&lt;LI&gt;Remove all row labels&lt;/LI&gt;&lt;LI&gt;For each value displayed (SBL_rate &amp;amp; 3 more)&lt;UL&gt;&lt;LI&gt;In top chart, right click, add a bar&lt;/LI&gt;&lt;LI&gt;On bottom left expand 'Variables' and only select one y variable&lt;/LI&gt;&lt;LI&gt;Change bar style to single&lt;/LI&gt;&lt;LI&gt;Set label to value&lt;/LI&gt;&lt;LI&gt;In legend settings change bar transparency to zero&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Change legend settings to only show the lines and bars on the bottom&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="labels.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8447i002B107F61EA3C84/image-size/large?v=v2&amp;amp;px=999" role="button" title="labels.png" alt="labels.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here( 1 );

dt1 = Open( "$Sample_data/Big Class.jmp", Invisible );

dt1Tab = dt1 &amp;lt;&amp;lt; Tabulate(
	Set Format( N( 9, "Best" ) ),
	Add Table(
		Column Table( Analysis Columns( :height, :weight ) ),
		Column Table( Grouping Columns( :sex ) ),
		Row Table( Grouping Columns( :age ) )
	)
);
	
dt2 = dt1Tab &amp;lt;&amp;lt; Make Into Data Table;

dt1Tab &amp;lt;&amp;lt; Close Window();

dt1 &amp;lt;&amp;lt; Close Window();

dt2 &amp;lt;&amp;lt; Graph Builder(
	Size( 929, 449 ),
	Show Control Panel( 0 ),
	Variables(
		X( :age ),
		Y( :Name( "Sum(height)" ) ),
		Y( :Name( "Sum(weight)" ), Position( 1 ) ),
		Y( :M ),
		Y( :F, Position( 2 ) )
	),
	Elements(
		Position( 1, 1 ),
		Line( X, Y( 1 ), Y( 2 ), Legend( 13 ) ),
		Points( X, Y( 1 ), Y( 2 ), Legend( 16 ), Jitter( 0 ) ),
		Bar(
			X,
			Y( 2 ),
			Legend( 19 ),
			Bar Style( "Single" ),
			Label( "Label by Value" )
		),
		Bar(
			X,
			Y( 1 ),
			Legend( 20 ),
			Bar Style( "Single" ),
			Label( "Label by Value" )
		)
	),
	Elements( Position( 1, 2 ), Bar( X, Y( 1 ), Y( 2 ), Legend( 24 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				13,
				Properties( 1, {Line Color( 51 ), Fill Color( 0 )} )
			), Legend Model(
				16,
				Base( 0, 0, 0 ),
				Base( 1, 0, 0 ),
				Properties( 1, {Line Color( 19 ), Fill Color( 0 )} )
			), Legend Model(
				19,
				Properties( 0, {Fill Color( 2 ), Transparency( 0 )} )
			), Legend Model(
				20,
				Properties( 0, {Fill Color( 2 ), Transparency( 0 )} )
			)}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Grid Line Order( 4 ), Reference Line Order( 8 )}
		),
		Dispatch(
			{},
			"400",
			LegendBox,
			{Legend Position(
				{13, [0, 1], 16, [-1, -1], 19, [-1], 20, [-1], 24, [2, 3]}
			), Position( {0, 1, -1, -1, -1, -1, 2, 3} )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 27 Nov 2017 14:10:26 GMT</pubDate>
    <dc:creator>ih</dc:creator>
    <dc:date>2017-11-27T14:10:26Z</dc:date>
    <item>
      <title>How to label multiple columns to every points in Graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/47668#M27164</link>
      <description>&lt;P&gt;Hi buddies,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have created a chart with multiples lines (multiples columns) in graph builder. When I labled&amp;nbsp;values&amp;nbsp;for columns (:sbl_rate; :Test module rate; :fab/sort rate; :assembly rate), instead of each point&amp;nbsp;would be labled corresponding to its value, it showed all row values to each point.&amp;nbsp;Please give me advices.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&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="charting.JPG" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8443i052C83183F95E041/image-size/large?v=v2&amp;amp;px=999" role="button" title="charting.JPG" alt="charting.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>Sun, 26 Nov 2017 15:18:18 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/47668#M27164</guid>
      <dc:creator>Hanyuri</dc:creator>
      <dc:date>2017-11-26T15:18:18Z</dc:date>
    </item>
    <item>
      <title>Re: How to label multiple columns to every points in Graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/47699#M27171</link>
      <description>&lt;P&gt;I think you want to label only by 'SBL_lot_qty'. But notice that (in the &lt;A href="http://www.jmp.com/support/help/13-2/Data_Table_Panels.shtml" target="_self"&gt;Columns panel&lt;/A&gt; of the data dable), you have a little 'label' icon after the name of four&amp;nbsp;other variables. You can right click and select 'Label/Unlabel' to set things up the way you want.&lt;/P&gt;</description>
      <pubDate>Mon, 27 Nov 2017 09:34:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/47699#M27171</guid>
      <dc:creator>ian_jmp</dc:creator>
      <dc:date>2017-11-27T09:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to label multiple columns to every points in Graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/47705#M27174</link>
      <description>&lt;P&gt;There might be a way to do this with row labels, but one option (albeit laborious) is to add transparent&amp;nbsp;bars with labels.&amp;nbsp; This can be done graphically by:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Start with your chart&lt;/LI&gt;&lt;LI&gt;Remove all row labels&lt;/LI&gt;&lt;LI&gt;For each value displayed (SBL_rate &amp;amp; 3 more)&lt;UL&gt;&lt;LI&gt;In top chart, right click, add a bar&lt;/LI&gt;&lt;LI&gt;On bottom left expand 'Variables' and only select one y variable&lt;/LI&gt;&lt;LI&gt;Change bar style to single&lt;/LI&gt;&lt;LI&gt;Set label to value&lt;/LI&gt;&lt;LI&gt;In legend settings change bar transparency to zero&lt;/LI&gt;&lt;/UL&gt;&lt;/LI&gt;&lt;LI&gt;Change legend settings to only show the lines and bars on the bottom&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="labels.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/8447i002B107F61EA3C84/image-size/large?v=v2&amp;amp;px=999" role="button" title="labels.png" alt="labels.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here( 1 );

dt1 = Open( "$Sample_data/Big Class.jmp", Invisible );

dt1Tab = dt1 &amp;lt;&amp;lt; Tabulate(
	Set Format( N( 9, "Best" ) ),
	Add Table(
		Column Table( Analysis Columns( :height, :weight ) ),
		Column Table( Grouping Columns( :sex ) ),
		Row Table( Grouping Columns( :age ) )
	)
);
	
dt2 = dt1Tab &amp;lt;&amp;lt; Make Into Data Table;

dt1Tab &amp;lt;&amp;lt; Close Window();

dt1 &amp;lt;&amp;lt; Close Window();

dt2 &amp;lt;&amp;lt; Graph Builder(
	Size( 929, 449 ),
	Show Control Panel( 0 ),
	Variables(
		X( :age ),
		Y( :Name( "Sum(height)" ) ),
		Y( :Name( "Sum(weight)" ), Position( 1 ) ),
		Y( :M ),
		Y( :F, Position( 2 ) )
	),
	Elements(
		Position( 1, 1 ),
		Line( X, Y( 1 ), Y( 2 ), Legend( 13 ) ),
		Points( X, Y( 1 ), Y( 2 ), Legend( 16 ), Jitter( 0 ) ),
		Bar(
			X,
			Y( 2 ),
			Legend( 19 ),
			Bar Style( "Single" ),
			Label( "Label by Value" )
		),
		Bar(
			X,
			Y( 1 ),
			Legend( 20 ),
			Bar Style( "Single" ),
			Label( "Label by Value" )
		)
	),
	Elements( Position( 1, 2 ), Bar( X, Y( 1 ), Y( 2 ), Legend( 24 ) ) ),
	SendToReport(
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				13,
				Properties( 1, {Line Color( 51 ), Fill Color( 0 )} )
			), Legend Model(
				16,
				Base( 0, 0, 0 ),
				Base( 1, 0, 0 ),
				Properties( 1, {Line Color( 19 ), Fill Color( 0 )} )
			), Legend Model(
				19,
				Properties( 0, {Fill Color( 2 ), Transparency( 0 )} )
			), Legend Model(
				20,
				Properties( 0, {Fill Color( 2 ), Transparency( 0 )} )
			)}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Grid Line Order( 4 ), Reference Line Order( 8 )}
		),
		Dispatch(
			{},
			"400",
			LegendBox,
			{Legend Position(
				{13, [0, 1], 16, [-1, -1], 19, [-1], 20, [-1], 24, [2, 3]}
			), Position( {0, 1, -1, -1, -1, -1, 2, 3} )}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 27 Nov 2017 14:10:26 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/47705#M27174</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2017-11-27T14:10:26Z</dc:date>
    </item>
    <item>
      <title>Re: How to label multiple columns to every points in Graph builder</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/48898#M27783</link>
      <description>&lt;P&gt;Hi ih,&lt;/P&gt;&lt;P&gt;It works exactly what I want it to be. :D&lt;/img&gt; Greatly appreciate!!!!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Dec 2017 09:24:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-label-multiple-columns-to-every-points-in-Graph-builder/m-p/48898#M27783</guid>
      <dc:creator>Hanyuri</dc:creator>
      <dc:date>2017-12-20T09:24:02Z</dc:date>
    </item>
  </channel>
</rss>

