<?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 How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5 in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770517#M95173</link>
    <description>&lt;P&gt;How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;    Pen Color("black");
    Line({:test1[i] - bb, :test2[i]}, {:test1[i] + bb + 500 * (2 * bb), :test2[i]});&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 08 Jul 2024 02:44:08 GMT</pubDate>
    <dc:creator>lala</dc:creator>
    <dc:date>2024-07-08T02:44:08Z</dc:date>
    <item>
      <title>How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770517#M95173</link>
      <description>&lt;P&gt;How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;    Pen Color("black");
    Line({:test1[i] - bb, :test2[i]}, {:test1[i] + bb + 500 * (2 * bb), :test2[i]});&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jul 2024 02:44:08 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770517#M95173</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-07-08T02:44:08Z</dc:date>
    </item>
    <item>
      <title>Re: How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770527#M95174</link>
      <description>&lt;P&gt;&lt;SPAN&gt;It didn't work&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;Pen Color( "black" );&lt;BR /&gt;seg = Line( {:test1[i] - bb, :test2[i]}, {:test1[i] + bb + 500 * (2 * bb), :test2[i]} );&lt;BR /&gt;seg &amp;lt;&amp;lt; Set Line Style( "Dotted" );&lt;BR /&gt;seg &amp;lt;&amp;lt; Set Transparency( .3 );&lt;CODE class=" language-jsl"&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jul 2024 03:22:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770527#M95174</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-07-08T03:22:41Z</dc:date>
    </item>
    <item>
      <title>Re: How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770528#M95175</link>
      <description>&lt;P&gt;The setting of line style is easy.&amp;nbsp; I am not seeing how to set the transparency for the line.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;names default to here(1);
dt = new table("example",
	new column("test1",values([5])),
	new column("test2",values([10]))
);
bb=1;
i=1;
nw=new window("test",
	gb=graph box(
		Pen Color("black");
		line style("dashed");
		Line( {:test1[i] - bb, :test2[i]}, {:test1[i] + bb + 500 * (2 * bb), :test2[i]} );
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;The line does not seem to have any segments that would allow for changing the transparency.&amp;nbsp; Maybe some other member has a solution.&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 04:08:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770528#M95175</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-07-08T04:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770529#M95176</link>
      <description>&lt;P&gt;Thank Jim!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I try this&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;    Pen Color("black");
    Line({:test1[i] - bb, :test2[i]}, {:test1[i] + bb + 500 * (2 * bb), :test2[i]}  ,{ Line Style( "Dotted" ) , Transparency( 0.5 ) });&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 08 Jul 2024 04:27:19 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770529#M95176</guid>
      <dc:creator>lala</dc:creator>
      <dc:date>2024-07-08T04:27:19Z</dc:date>
    </item>
    <item>
      <title>Re: How can change a black solid horizontal line to a black dashed line and change the transparency to 0.5</title>
      <link>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770530#M95177</link>
      <description>&lt;P&gt;excellent&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 04:31:58 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/How-can-change-a-black-solid-horizontal-line-to-a-black-dashed/m-p/770530#M95177</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2024-07-08T04:31:58Z</dc:date>
    </item>
  </channel>
</rss>

