<?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: Changing the width of the grid lines in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Changing-the-width-of-the-grid-lines/m-p/717761#M89942</link>
    <description>&lt;P&gt;I know the first method you mentioned, but I haven't thought about the second one. Thanks a lot! If I don't find the right way to reduce the width of gride lines, I'll probably use this.&lt;/P&gt;</description>
    <pubDate>Thu, 18 Jan 2024 10:51:12 GMT</pubDate>
    <dc:creator>Giardini</dc:creator>
    <dc:date>2024-01-18T10:51:12Z</dc:date>
    <item>
      <title>Changing the width of the grid lines</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-the-width-of-the-grid-lines/m-p/717514#M89922</link>
      <description>&lt;P&gt;Doesn't anyone know how to change&amp;nbsp;the&amp;nbsp; grid line&amp;nbsp;width? I would be most grateful for an answer on how to do it using JSL JMP alhough an answer how to do it manually, would also be useful for me.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2024 11:15:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-the-width-of-the-grid-lines/m-p/717514#M89922</guid>
      <dc:creator>Giardini</dc:creator>
      <dc:date>2024-01-17T11:15:23Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the width of the grid lines</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-the-width-of-the-grid-lines/m-p/717564#M89927</link>
      <description>&lt;P&gt;I am not aware of direct way to change the thickness of a Grid line.&amp;nbsp; However, maybe, if what you want to do is to make the grid lines more prominent, you could change the color to a less demure color, like black.&lt;/P&gt;
&lt;P&gt;To do this, you change the Major Grid Line Color in JMP Preferences, in the Styles section..&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1705502995114.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60341i14C7BFA859073C8F/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1705502995114.png" alt="txnelson_0-1705502995114.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;Using JSL, the following changes the preference&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
//Caution: Changing a preference will 
//affect the default behavior of JMP. 

Preferences[1] &amp;lt;&amp;lt; Set( Major Grid Line Color( "Blue" ) );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Finally, it is possible using JSL to add graphic primitives to the graph, where you could add lines to the graph, and in there, the thicknes of the line iis adjustable.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
New Window( "Line Style Example",
	Graph Box(
		Frame Size( 500, 400 ),
		named line styles = {"Solid", "Dotted", "Dashed", "Dash Dot",
		"Dash Dot Dot", "Dash Dash Dot", "Dash Dash Dot Dot", "Long Dash",
		"Long Dash Dash", "Dense Dash", "Sparse Dash", "Sparse Dot",
		"Sparse Dash Dot"};
		For Each( {istyle, i}, named line styles,
			{x = 5 :: 75, y = 12 * Sin( x / 12 )},
			Text(
				{x[N Items( x )] + 1, y[N Items( y )] + 92 - 6 * i - 1.5},
				istyle
			);
			Line Style( istyle );
			Pen Size( 3 );
			Line( x, y + 92 - 6 * i );
		);
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_1-1705503529480.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/60342i5BD579454F918B6D/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_1-1705503529480.png" alt="txnelson_1-1705503529480.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;This example is taken from the Scripting Index, using a Graph Box to build the display.&amp;nbsp; However, the same primitives can be added to any JMP graph using&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;&amp;lt;&amp;lt; add Graphics Script( &amp;lt;the script? );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;where using the Line() function, you can add lines to the graph at any interval desired.&lt;/P&gt;</description>
      <pubDate>Wed, 17 Jan 2024 15:02:25 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-the-width-of-the-grid-lines/m-p/717564#M89927</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-01-17T15:02:25Z</dc:date>
    </item>
    <item>
      <title>Re: Changing the width of the grid lines</title>
      <link>https://community.jmp.com/t5/Discussions/Changing-the-width-of-the-grid-lines/m-p/717761#M89942</link>
      <description>&lt;P&gt;I know the first method you mentioned, but I haven't thought about the second one. Thanks a lot! If I don't find the right way to reduce the width of gride lines, I'll probably use this.&lt;/P&gt;</description>
      <pubDate>Thu, 18 Jan 2024 10:51:12 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Changing-the-width-of-the-grid-lines/m-p/717761#M89942</guid>
      <dc:creator>Giardini</dc:creator>
      <dc:date>2024-01-18T10:51:12Z</dc:date>
    </item>
  </channel>
</rss>

