<?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: Proper labels without stacking in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718594#M90182</link>
    <description>&lt;P&gt;See here stacked...&lt;/P&gt;</description>
    <pubDate>Mon, 29 Jan 2024 07:20:37 GMT</pubDate>
    <dc:creator>MichaH</dc:creator>
    <dc:date>2024-01-29T07:20:37Z</dc:date>
    <item>
      <title>Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718458#M90129</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;how can I get proper labels for data without stacking. I cannot stack as I need to see rows dependencies, but on the other hand side need to have for each category only relevant data. I attached also the file.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 11:57:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718458#M90129</guid>
      <dc:creator>MichaH</dc:creator>
      <dc:date>2024-01-26T11:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718459#M90130</link>
      <description>&lt;P&gt;What are "proper labels" in this case?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Jan 2024 12:03:38 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718459#M90130</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-26T12:03:38Z</dc:date>
    </item>
    <item>
      <title>Re: Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718591#M90179</link>
      <description>&lt;P&gt;Hi, please see attached.&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 06:39:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718591#M90179</guid>
      <dc:creator>MichaH</dc:creator>
      <dc:date>2024-01-29T06:39:51Z</dc:date>
    </item>
    <item>
      <title>Re: Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718594#M90182</link>
      <description>&lt;P&gt;See here stacked...&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 07:20:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718594#M90182</guid>
      <dc:creator>MichaH</dc:creator>
      <dc:date>2024-01-29T07:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718595#M90183</link>
      <description>&lt;P&gt;One option is to add new column which has the row numbers and then use that as overlay for float type of bar charts and enable labels on those. Then use customize to make those "bar charts" smaller and hide extra values from legend. (This is is very annoying to do though)&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 08:01:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718595#M90183</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-29T08:01:33Z</dc:date>
    </item>
    <item>
      <title>Re: Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718599#M90186</link>
      <description>&lt;P&gt;Hi, can you please show me how please?&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 09:08:42 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/718599#M90186</guid>
      <dc:creator>MichaH</dc:creator>
      <dc:date>2024-01-29T09:08:42Z</dc:date>
    </item>
    <item>
      <title>Re: Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/719402#M90188</link>
      <description>&lt;P&gt;Here is a script which should create the graph (mostly, it doesn't fix legend)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);

dt = Open("$DOWNLOADS/Points.jmp");
dt &amp;lt;&amp;lt; Clear Row States; // to remove labels

new_col = dt &amp;lt;&amp;lt; New Column("Row", Numeric, Ordinal, Formula(Row()));

new_col &amp;lt;&amp;lt; Suppress Eval(1);


gb = dt &amp;lt;&amp;lt; Graph Builder(
	Size(1076, 744),
	Show Control Panel(0),
	Variables(Y(:VA), Y(:WA), Group X(:Type), Overlay(:Row)),
	Elements(
		Position(1, 1),
		Box Plot(Y, Overlay(0), Legend(8)),
		Points(Y, Overlay(0), Legend(10)),
		Bar(Y, Legend(12), Bar Style("Float"), Label("Label by Value"))
	),
	Elements(
		Position(1, 2),
		Box Plot(Y, Overlay(0), Legend(9)),
		Points(Y, Overlay(0), Legend(11)),
		Bar(Y, Legend(13), Bar Style("Float"), Label("Label by Value"))
	),
	SendToReport(
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{DispatchSeg(BarSeg(1), {Set Width Proportion(0.00005)})}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox(2),
			{DispatchSeg(BarSeg(1), {Set Width Proportion(0.000001)})}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox(3),
			{DispatchSeg(BarSeg(1), {Set Width Proportion(0.000001)})}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox(4),
			{DispatchSeg(BarSeg(1), {Set Width Proportion(0.000001)})}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox(5),
			{DispatchSeg(BarSeg(1), {Set Width Proportion(0.000001)})}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox(6),
			{DispatchSeg(BarSeg(1), {Set Width Proportion(0.000001)})}
		),
		Dispatch(
			{},
			"400",
			LegendBox,
			{Legend Position(
				{8, [0, -3], 10, [2], 12, [4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
				19, 20, 21, 22, 23, 24, 25, 26], 9, [1, -3], 11, [3], 13, [-3, -3, -3, -3, -3,
				-3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3, -3]}
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Important things are setting variables for graph builder&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1706529693641.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60666i94E3067D48CF2E14/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1706529693641.png" alt="jthi_0-1706529693641.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and customizing each bar segments width proportion to be much smaller&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1706529725713.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60667iBA24D0B1305C59DF/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1706529725713.png" alt="jthi_1-1706529725713.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and you end up with&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1706529762560.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60668i50D2DC8C285AF322/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1706529762560.png" alt="jthi_2-1706529762560.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;and if you need classification I would maybe consider modifying the marker&lt;/P&gt;</description>
      <pubDate>Mon, 29 Jan 2024 12:04:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/719402#M90188</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-01-29T12:04:00Z</dc:date>
    </item>
    <item>
      <title>Re: Proper labels without stacking</title>
      <link>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/722282#M90437</link>
      <description>&lt;P&gt;Thank you a lot despite I was not able to replicate.&lt;/P&gt;</description>
      <pubDate>Tue, 06 Feb 2024 14:25:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Proper-labels-without-stacking/m-p/722282#M90437</guid>
      <dc:creator>MichaH</dc:creator>
      <dc:date>2024-02-06T14:25:48Z</dc:date>
    </item>
  </channel>
</rss>

