<?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 change only sections of a graph's background color in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579806#M78707</link>
    <description>&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;How can the bubble map achieve different backgrounds?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://community.jmp.com/t5/Discussions/When-drawing-bubbles-how-can-I-set-the-background-color-to/m-p/579739#M78700" target="_self"&gt;https://community.jmp.com/t5/Discussions/When-drawing-bubbles-how-can-I-set-the-background-color-to/m-p/579739#M78700&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thank &lt;SPAN&gt;Mark&lt;/SPAN&gt;!&lt;/P&gt;</description>
    <pubDate>Sat, 10 Dec 2022 13:29:27 GMT</pubDate>
    <dc:creator>lala</dc:creator>
    <dc:date>2022-12-10T13:29:27Z</dc:date>
    <item>
      <title>How to change only sections of a graph's background color</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579463#M78668</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; I am interested in scripting a solution that allows me to change sections of a graph's background color. I know how to manually do this with editing the axes of a graph, but this changes everything vertically (or horizontally) over that range. I want to change sections that are bounded in both X and Y.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;For example, I want to take the following graph and change it from this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SDF1_0-1670603505866.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48098iC940B88C3B951B83/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SDF1_0-1670603505866.png" alt="SDF1_0-1670603505866.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;To something like this:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SDF1_1-1670603656707.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48099i7559CB5D0385F0A1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="SDF1_1-1670603656707.png" alt="SDF1_1-1670603656707.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;JMP does this with the Process Capability platform and Process Performance Plot, so I'm pretty sure it's possible, but I just don't know how to do it. Preferably, the background colors will change when changing the graph's axes, like it does in the Process Performance Plot.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Any thoughts/feedback is much appreciated.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Sun, 11 Jun 2023 11:29:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579463#M78668</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2023-06-11T11:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to change only sections of a graph's background color</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579493#M78674</link>
      <description>&lt;P&gt;The Rect() graphics function can create such colored areas. Be sure to call Rect() before the Marker() function so that the colors do not obscure the points.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Example:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

obj = dt &amp;lt;&amp;lt; Bivariate(
	Y( :weight ),
	X( :height ),
	Fit Line( {Line Color( {212, 73, 88} )} ),
	SendToReport(
		Dispatch(
			{},
			"Bivar Plot",
			FrameBox,
			{Add Graphics Script(
				4,
				Description( "" ),
				Fill Color( "blue" );
				Rect( 50, 120, 60, 60, 1 );
			)}
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 09 Dec 2022 17:45:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579493#M78674</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2022-12-09T17:45:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to change only sections of a graph's background color</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579505#M78677</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/5358"&gt;@Mark_Bailey&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; Thanks for the quick response, that is exactly what I'm looking for.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks!,&lt;/P&gt;&lt;P&gt;DS&lt;/P&gt;</description>
      <pubDate>Fri, 09 Dec 2022 18:14:00 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579505#M78677</guid>
      <dc:creator>SDF1</dc:creator>
      <dc:date>2022-12-09T18:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: How to change only sections of a graph's background color</title>
      <link>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579806#M78707</link>
      <description>&lt;UL&gt;&lt;LI&gt;&lt;P class=""&gt;How can the bubble map achieve different backgrounds?&lt;/P&gt;&lt;/LI&gt;&lt;LI&gt;&lt;A href="https://community.jmp.com/t5/Discussions/When-drawing-bubbles-how-can-I-set-the-background-color-to/m-p/579739#M78700" target="_self"&gt;https://community.jmp.com/t5/Discussions/When-drawing-bubbles-how-can-I-set-the-background-color-to/m-p/579739#M78700&lt;/A&gt;&amp;nbsp;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thank &lt;SPAN&gt;Mark&lt;/SPAN&gt;!&lt;/P&gt;</description>
      <pubDate>Sat, 10 Dec 2022 13:29:27 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-to-change-only-sections-of-a-graph-s-background-color/m-p/579806#M78707</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2022-12-10T13:29:27Z</dc:date>
    </item>
  </channel>
</rss>

