<?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: Adding Label for Interval in Bar Chart in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889776#M105192</link>
    <description>&lt;P&gt;It's almost there! But why i cannot see the label for the points?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ebinmohd_0-1753707546065.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79065i28D004FB28B3F629/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ebinmohd_0-1753707546065.png" alt="ebinmohd_0-1753707546065.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 28 Jul 2025 12:59:55 GMT</pubDate>
    <dc:creator>ebinmohd</dc:creator>
    <dc:date>2025-07-28T12:59:55Z</dc:date>
    <item>
      <title>Adding Label for Interval in Bar Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889701#M105185</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Graph Builder(
	Size( 2104, 617 ),
	Fit to Window( "Off" ),
	Variables(
		X( :PSM ITEM ),
		Y( :AvgPsm_PTOV ),
		Y( :MaxPsm_PTOV, Position( 1 ) ),
		Y( :MinPsm_PTOV, Position( 1 ) ),
		Group X( :PCIE_TOGGLE ),
		Overlay( :BIOS ),
		Color( :BIOS )
	),
	Elements(
		Bar(
			X,
			Y( 2 ),
			Y( 3 ),
			Y( 1 ),
			Legend( 52 ),
			Bar Style( "Interval" ),
			Label( "Label by Value" )
		)
	),
	Local Data Filter(
		Close Outline( 1 ),
		Width( 226 ),
		Add Filter(
			columns( :PSM ITEM ),
			Where(
				:PSM ITEM == {"IOD0_PCIE0_BOT_LFT_VDDSOC",
				"IOD0_PCIE1_BOT_LFT_VDDSOC", "IOD0_PCIE2_BOT_LFT_VDDSOC",
				"IOD0_PCIE3_BOT_LFT_VDDSOC"}
			),
			Display( :PSM ITEM, "Check Box Display", Find( Set Text( "vddsoc" ) ) )
		)
	),
	SendToReport(
		Dispatch( {"Bar"}, "", OutlineBox, {Close( 0 )} ),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Set Graphlet(
				Picture(
					Try(
						loader = If( Class Exists( "hllLoader" ),
							New Object( "hllLoader" ),
							Include( "$BUILTIN_SCRIPTS/hllib.jsl" )
						);
						loader:setDebug( 0 );
						hlp = loader:lazyLoad( "hllPresets" );
						hlp:launchLabel Viewer();
					,
						Write(
							"
Hover Label: Unable to launch Preset, please check that the Preset library is available at $BUILTIN_SCRIPTS/hllib.jsl"
						);
						Write( Eval Insert( "
Exception: ^exception_msg^" ) );
						Empty();
					)
				),
				Title( "Label Viewer Preset" ),
				Reapply( 1 )
			)}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox( 2 ),
			{Set Graphlet(
				Picture(
					Try(
						loader = If( Class Exists( "hllLoader" ),
							New Object( "hllLoader" ),
							Include( "$BUILTIN_SCRIPTS/hllib.jsl" )
						);
						loader:setDebug( 0 );
						hlp = loader:lazyLoad( "hllPresets" );
						hlp:launchMarker();
					,
						Write(
							"
Hover Label: Unable to launch Preset, please check that the Preset library is available at $BUILTIN_SCRIPTS/hllib.jsl"
						);
						Write( Eval Insert( "
Exception: ^exception_msg^" ) );
						Empty();
					)
				),
				Title( "Marker Preset" ),
				Reapply( 1 )
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;BR /&gt;&lt;BR /&gt;I have problem to add Max and Min value for my Interval Bar chart. it only shows actual max - min interval.&lt;BR /&gt;&lt;BR /&gt;My main goal is to make a bode plot or candle stick that shows Max, Avg and Min for an X-axis data. Max, Avg and Min are separated into different columns. I have tried bode plot chart but its fail to present the data as I want.&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ebinmohd_0-1753667621583.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79038iC0730D120BF7939C/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ebinmohd_0-1753667621583.png" alt="ebinmohd_0-1753667621583.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 01:55:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889701#M105185</guid>
      <dc:creator>ebinmohd</dc:creator>
      <dc:date>2025-07-28T01:55:01Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Label for Interval in Bar Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889720#M105186</link>
      <description>&lt;P&gt;After you have plot like this&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1753677008821.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79043iC710DB7EBAE538C2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1753677008821.png" alt="jthi_0-1753677008821.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Add points plot on top of your bar chart (right click &amp;gt; Add &amp;gt; points or hold shift and click on the points plot)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_1-1753677051825.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79044i1E4E67A4F4E259E5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_1-1753677051825.png" alt="jthi_1-1753677051825.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Next change points to use some aggregation (mean for example)&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_2-1753677086392.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79045i18C7E29E2B542A11/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_2-1753677086392.png" alt="jthi_2-1753677086392.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Then from points Variable disable average column and set labels by value&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_3-1753677120135.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79047i9CAF8BD19AF4D9C5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_3-1753677120135.png" alt="jthi_3-1753677120135.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;You can then modify marker size for example to make the points much smaller. Optionally you could use Float bar charts instead of points but it takes a bit more effort as you have to create separate float bar for each of the columns you wish to label.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 04:34:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889720#M105186</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-28T04:34:08Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Label for Interval in Bar Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889776#M105192</link>
      <description>&lt;P&gt;It's almost there! But why i cannot see the label for the points?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ebinmohd_0-1753707546065.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79065i28D004FB28B3F629/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ebinmohd_0-1753707546065.png" alt="ebinmohd_0-1753707546065.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 12:59:55 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889776#M105192</guid>
      <dc:creator>ebinmohd</dc:creator>
      <dc:date>2025-07-28T12:59:55Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Label for Interval in Bar Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889885#M105194</link>
      <description>&lt;P&gt;You are using older version of JMP which will require some extra hoops and loops if you wish to use points. I would suggest using the floating bar for JMP versions before JMP18.&lt;/P&gt;</description>
      <pubDate>Mon, 28 Jul 2025 16:14:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/889885#M105194</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-07-28T16:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: Adding Label for Interval in Bar Chart</title>
      <link>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/890187#M105200</link>
      <description>&lt;P&gt;I see, thank you! I get my results! Thank you again!&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="ebinmohd_0-1753752262786.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/79086iE7ACFAD0F2CAEFA6/image-size/medium?v=v2&amp;amp;px=400" role="button" title="ebinmohd_0-1753752262786.png" alt="ebinmohd_0-1753752262786.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;:)&lt;/img&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 29 Jul 2025 01:24:33 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Adding-Label-for-Interval-in-Bar-Chart/m-p/890187#M105200</guid>
      <dc:creator>ebinmohd</dc:creator>
      <dc:date>2025-07-29T01:24:33Z</dc:date>
    </item>
  </channel>
</rss>

