<?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 Traffic Lights and Gauges in Jmp Dashboards? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/658728#M84803</link>
    <description>&lt;P&gt;In Jmp Dashboards, is there a function to add Traffic Lights and Gauge Views?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://grafana.com/grafana/plugins/snuids-trafficlights-panel/" target="_blank" rel="noopener"&gt;https://grafana.com/grafana/plugins/snuids-trafficlights-panel/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://kerrykolosko.com/portfolio-category/svg-templates/" target="_blank" rel="noopener"&gt;https://kerrykolosko.com/portfolio-category/svg-templates/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1689494044316.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54766i9ECF47ED4B1423BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1689494044316.png" alt="hogi_1-1689494044316.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

gb = Graph Builder(
	Size( 437, 413 ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Line Of Fit( X, Y, Legend( 3 ) ) )
);

dt &amp;lt;&amp;lt; New Column( "BMI",
	Formula(
		If(
			:weight &amp;gt; :"Upper Fit(weight)"n, 1,
			:weight &amp;lt; :"Lower Fit(weight)"n, -1,
			0
		)
	)
);

Report(gb)[GraphBuilderBox(1)] &amp;lt;&amp;lt; updateElement(1, 1, 2, {Save Formula});
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 117, 262 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Show Title( 0 ),
	Show Footer( 0 ),
	Show X Axis( 0 ),
	Show Y Axis( 0 ),
	Show X Axis Title( 0 ),
	Show Y Axis Title( 0 ),
	Lock Scales( 1 ),
	Fit to Window( "Off" ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :name ), Y( :BMI ), Color( :BMI ) ),
	Elements( Points( X, Y, Legend( 55 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :name ),
			Where( :name == "MICHAEL" ),
			Display( :name, N Items( 6 ), Find( Set Text( "" ) ) )
		)
	),
	SendToReport(
		Dispatch(
			{},
			"name",
			ScaleBox,
			{Format( "Best", 9 ), Min( -0.25 ), Max( 0.25 ), Inc( 1 ), Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"BMI",
			ScaleBox,
			{Format( "Best", 12 ), Min( -2 ), Max( 2 ), Inc( 0.2 ), Minor Ticks( 0 ),
			Label Row( {Show Major Grid( 0 ), Show Major Labels( 0 )} )}
		),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				55,
				Properties(
					0,
					{gradient(
						{Color Theme(
							{"Stoplight Bad to Good Copy", 4099, {"Red", "Yellow", {255, 255, 0}, "Green",
							Missing( {110, 110, 110} )}, {0.183431952662722, 0.340236686390533,
							0.529585798816568, 1}, 1, 1}
						), Scale Values( [-1 0 1] ), Reverse Gradient( 1 ), N Labels( 11 ),
						Label Format( "Fixed Dec", 12, 2 )}
					)},
					Item ID( "BMI", 1 )
				)
			)}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size( 40 ), Marker Drawing Mode( "Outlined" ),
			Add Graphics Script(
				2,
				Description( "" ),
				Fill Color( gray );
				Rect( -0.18, 1.8, 0.18, -1.8, 1 );
				Fill Color( red );
				Transparency( 0.2 );
				Circle( {0, 1}, 0.4, "FILL" );
				Fill Color( yellow );
				Circle( {0, 0}, 0.4, "FILL" );
				Fill Color( green );
				Circle( {0, -1}, 0.4, "FILL" );
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sun, 16 Jul 2023 08:40:50 GMT</pubDate>
    <dc:creator>hogi</dc:creator>
    <dc:date>2023-07-16T08:40:50Z</dc:date>
    <item>
      <title>Traffic Lights and Gauges in Jmp Dashboards?</title>
      <link>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/658728#M84803</link>
      <description>&lt;P&gt;In Jmp Dashboards, is there a function to add Traffic Lights and Gauge Views?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://grafana.com/grafana/plugins/snuids-trafficlights-panel/" target="_blank" rel="noopener"&gt;https://grafana.com/grafana/plugins/snuids-trafficlights-panel/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://kerrykolosko.com/portfolio-category/svg-templates/" target="_blank" rel="noopener"&gt;https://kerrykolosko.com/portfolio-category/svg-templates/&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hogi_1-1689494044316.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54766i9ECF47ED4B1423BC/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hogi_1-1689494044316.png" alt="hogi_1-1689494044316.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here(1);
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );

gb = Graph Builder(
	Size( 437, 413 ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :height ), Y( :weight ), Overlay( :sex ) ),
	Elements( Points( X, Y, Legend( 1 ) ), Line Of Fit( X, Y, Legend( 3 ) ) )
);

dt &amp;lt;&amp;lt; New Column( "BMI",
	Formula(
		If(
			:weight &amp;gt; :"Upper Fit(weight)"n, 1,
			:weight &amp;lt; :"Lower Fit(weight)"n, -1,
			0
		)
	)
);

Report(gb)[GraphBuilderBox(1)] &amp;lt;&amp;lt; updateElement(1, 1, 2, {Save Formula});
dt &amp;lt;&amp;lt; Graph Builder(
	Size( 117, 262 ),
	Show Control Panel( 0 ),
	Show Legend( 0 ),
	Show Title( 0 ),
	Show Footer( 0 ),
	Show X Axis( 0 ),
	Show Y Axis( 0 ),
	Show X Axis Title( 0 ),
	Show Y Axis Title( 0 ),
	Lock Scales( 1 ),
	Fit to Window( "Off" ),
	Summary Statistic( "Median" ),
	Graph Spacing( 4 ),
	Variables( X( :name ), Y( :BMI ), Color( :BMI ) ),
	Elements( Points( X, Y, Legend( 55 ) ) ),
	Local Data Filter(
		Add Filter(
			columns( :name ),
			Where( :name == "MICHAEL" ),
			Display( :name, N Items( 6 ), Find( Set Text( "" ) ) )
		)
	),
	SendToReport(
		Dispatch(
			{},
			"name",
			ScaleBox,
			{Format( "Best", 9 ), Min( -0.25 ), Max( 0.25 ), Inc( 1 ), Minor Ticks( 0 )}
		),
		Dispatch(
			{},
			"BMI",
			ScaleBox,
			{Format( "Best", 12 ), Min( -2 ), Max( 2 ), Inc( 0.2 ), Minor Ticks( 0 ),
			Label Row( {Show Major Grid( 0 ), Show Major Labels( 0 )} )}
		),
		Dispatch(
			{},
			"400",
			ScaleBox,
			{Legend Model(
				55,
				Properties(
					0,
					{gradient(
						{Color Theme(
							{"Stoplight Bad to Good Copy", 4099, {"Red", "Yellow", {255, 255, 0}, "Green",
							Missing( {110, 110, 110} )}, {0.183431952662722, 0.340236686390533,
							0.529585798816568, 1}, 1, 1}
						), Scale Values( [-1 0 1] ), Reverse Gradient( 1 ), N Labels( 11 ),
						Label Format( "Fixed Dec", 12, 2 )}
					)},
					Item ID( "BMI", 1 )
				)
			)}
		),
		Dispatch(
			{},
			"Graph Builder",
			FrameBox,
			{Marker Size( 40 ), Marker Drawing Mode( "Outlined" ),
			Add Graphics Script(
				2,
				Description( "" ),
				Fill Color( gray );
				Rect( -0.18, 1.8, 0.18, -1.8, 1 );
				Fill Color( red );
				Transparency( 0.2 );
				Circle( {0, 1}, 0.4, "FILL" );
				Fill Color( yellow );
				Circle( {0, 0}, 0.4, "FILL" );
				Fill Color( green );
				Circle( {0, -1}, 0.4, "FILL" );
			)}
		)
	)
)&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sun, 16 Jul 2023 08:40:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/658728#M84803</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-07-16T08:40:50Z</dc:date>
    </item>
    <item>
      <title>Re: Traffic Lights and Gauges in Jmp Dashboards?</title>
      <link>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/658863#M84814</link>
      <description>&lt;P&gt;Not that I'm aware of.&amp;nbsp; My approach is to use images:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="David_Burnham_1-1689556927172.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/54781iAE8B8E5B27011B76/image-size/large?v=v2&amp;amp;px=999" role="button" title="David_Burnham_1-1689556927172.png" alt="David_Burnham_1-1689556927172.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 01:22:23 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/658863#M84814</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2023-07-17T01:22:23Z</dc:date>
    </item>
    <item>
      <title>Re: Traffic Lights and Gauges in Jmp Dashboards?</title>
      <link>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/658953#M84825</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/26800"&gt;@hogi&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;have you tried using Mapshapes?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is an example and helpful addin:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://community.jmp.com/t5/JMP-Add-Ins/Custom-Map-Creator/ta-p/21479" target="_blank"&gt;https://community.jmp.com/t5/JMP-Add-Ins/Custom-Map-Creator/ta-p/21479&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;or more info in the help:&lt;/P&gt;
&lt;P&gt;&lt;A href="https://www.jmp.com/support/help/en/17.2/index.shtml#page/jmp/custom-map-files.shtml" target="_blank"&gt;https://www.jmp.com/support/help/en/17.2/index.shtml#page/jmp/custom-map-files.shtml&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Best&lt;/P&gt;
&lt;P&gt;Florian&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 07:23:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/658953#M84825</guid>
      <dc:creator>Florian_Vogt</dc:creator>
      <dc:date>2023-07-17T07:23:22Z</dc:date>
    </item>
    <item>
      <title>Re: Traffic Lights and Gauges in Jmp Dashboards?</title>
      <link>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/659425#M84869</link>
      <description>&lt;P&gt;nice trick :)&lt;/img&gt;&lt;BR /&gt;and the images are automatically updated when the user adjusts the Cp and Cpk sliders?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Jul 2023 22:21:40 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/659425#M84869</guid>
      <dc:creator>hogi</dc:creator>
      <dc:date>2023-07-17T22:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Traffic Lights and Gauges in Jmp Dashboards?</title>
      <link>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/660334#M84933</link>
      <description>&lt;P&gt;Yes.&amp;nbsp; And if you click on it, it launches the full analysis.&lt;/P&gt;</description>
      <pubDate>Wed, 19 Jul 2023 17:45:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Traffic-Lights-and-Gauges-in-Jmp-Dashboards/m-p/660334#M84933</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2023-07-19T17:45:51Z</dc:date>
    </item>
  </channel>
</rss>

