<?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: Change Labels in Graph Builder for Bar Charts from Horizontal to Vertical? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909132#M106782</link>
    <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16666"&gt;@voy-voy&lt;/a&gt;&amp;nbsp; for supporting the wish with a Kudo : )&lt;/P&gt;</description>
    <pubDate>Wed, 22 Oct 2025 16:29:25 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2025-10-22T16:29:25Z</dc:date>
    <item>
      <title>Change Labels in Graph Builder for Bar Charts from Horizontal to Vertical?</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909063#M106770</link>
      <description>&lt;P&gt;Hello,&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I often have in Graph Builder Bar Charts with the Sum on the Top. But if the Number ist to higher, than it is no more readable. (Like in the Attachment)&lt;/P&gt;
&lt;P&gt;So&amp;nbsp;how can I change Labels in Graph Builder for Bar Charts from Horizontal to Vertical or 45°?&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 09:25:34 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909063#M106770</guid>
      <dc:creator>voy-voy</dc:creator>
      <dc:date>2025-10-22T09:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: Change Labels in Graph Builder for Bar Charts from Horizontal to Vertical?</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909075#M106771</link>
      <description>&lt;P&gt;You have to use scripting to do that (to my knowledge). Here is related wish list item&amp;nbsp;&lt;A href="https://community.jmp.com/t5/JMP-Wish-List/Graph-builder-bar-chart-data-label-control/idi-p/343142" target="_blank" rel="noopener"&gt;Graph builder bar chart data label control&lt;/A&gt;&amp;nbsp;which will also link here&amp;nbsp;&lt;A href="https://community.jmp.com/t5/Byron-Wingerd-s-Blog/Graph-Builder-Bar-Graph-Label-Offset/ba-p/777858" target="_blank" rel="noopener"&gt;Graph Builder Bar Graph Label Offset&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 09:53:14 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909075#M106771</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2025-10-22T09:53:14Z</dc:date>
    </item>
    <item>
      <title>Re: Change Labels in Graph Builder for Bar Charts from Horizontal to Vertical?</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909090#M106777</link>
      <description>&lt;P&gt;Thank You, this was helpfull. So in the moment ther ist just a scripting solution.&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;SendToReport(
    Dispatch(
        {},
        "Graph Builder",
        FrameBox(1),
        DispatchSeg(BarSeg(1), Set Font("", 12, "", 90))
    ),
    Dispatch(
        {},
        "Graph Builder",
        FrameBox(2),
        DispatchSeg(BarSeg(1), Set Font("", 12, "", 90))
    )
),&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You can add this to the Sript and it works&amp;nbsp;&lt;/P&gt;
&lt;P&gt;12 - Size&lt;/P&gt;
&lt;P&gt;90 - Angel&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I save the Script it looks like this (for an Other diagramm with more lins)&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;	SendToReport(
		Dispatch( {}, "Graph Builder", FrameBox( 3 ),
			{DispatchSeg( BarSeg( 1 ), {Font( Size( 12 ), Angle( 90 ) )} )}
		),
		Dispatch( {}, "Graph Builder", FrameBox( 4 ),
			{DispatchSeg( BarSeg( 1 ), {Font( Size( 12 ), Angle( 90 ) )} )}
		),
		Dispatch( {}, "Graph Builder", FrameBox( 5 ),
			{DispatchSeg( BarSeg( 1 ), {Font( Size( 10 ), Angle( 90 ) )} )}
		)
	)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 22 Oct 2025 12:30:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909090#M106777</guid>
      <dc:creator>voy-voy</dc:creator>
      <dc:date>2025-10-22T12:30:28Z</dc:date>
    </item>
    <item>
      <title>Re: Change Labels in Graph Builder for Bar Charts from Horizontal to Vertical?</title>
      <link>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909132#M106782</link>
      <description>&lt;P&gt;thanks&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/16666"&gt;@voy-voy&lt;/a&gt;&amp;nbsp; for supporting the wish with a Kudo : )&lt;/P&gt;</description>
      <pubDate>Wed, 22 Oct 2025 16:29:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Change-Labels-in-Graph-Builder-for-Bar-Charts-from-Horizontal-to/m-p/909132#M106782</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2025-10-22T16:29:25Z</dc:date>
    </item>
  </channel>
</rss>

