<?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: dashboard in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/dashboard/m-p/724693#M90773</link>
    <description>&lt;P&gt;You could just try and see what happens...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but here is an 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");

nw = New Window("Example",
	Tab Box(
		tp = Tab Page Box(
			"a",
			gb = dt &amp;lt;&amp;lt;  Graph Builder(
				Variables(X(:height), Y(:weight)),
				Elements(Points(X, Y), Smoother(X, Y))
			);
	
		),
		Tab Page Box(
			"b",
			gb = dt &amp;lt;&amp;lt; Graph Builder(
				Variables(X(:height), Y(:weight)),
				Elements(Points(X, Y), Smoother(X, Y))
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 19 Feb 2024 15:40:20 GMT</pubDate>
    <dc:creator>jthi</dc:creator>
    <dc:date>2024-02-19T15:40:20Z</dc:date>
    <item>
      <title>dashboard</title>
      <link>https://community.jmp.com/t5/Discussions/dashboard/m-p/724684#M90770</link>
      <description>&lt;P&gt;Bonjour,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Juste une question pour les tableaux de bord sur JMP.&lt;BR /&gt;Comment peut-on créer plusieurs onglets comme ci-dessous sur le même tableau de bord ?&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="hcarr01_0-1708353865017.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61238i83B3621FA443DDF1/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hcarr01_0-1708353865017.png" alt="hcarr01_0-1708353865017.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;FONT&gt;Merci pour votre réponse !&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 14:47:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/dashboard/m-p/724684#M90770</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-02-19T14:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: dashboard</title>
      <link>https://community.jmp.com/t5/Discussions/dashboard/m-p/724688#M90771</link>
      <description>&lt;P&gt;Yes, use Tab Box() and Tab Page Box()&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
New Window("Example",
	Tab Box(
		tp = Tab Page Box(
			Title("alpha"),
			Panel Box("panel", Text Box("text"))
		),
		Tab Page Box(
			Title("beta"),
			Popup Box({"x", ex = 1, "y", ex = 2})
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="jthi_0-1708354422106.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61240i8E62501620781465/image-size/medium?v=v2&amp;amp;px=400" role="button" title="jthi_0-1708354422106.png" alt="jthi_0-1708354422106.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;If you want Red Triangle menu &amp;lt;&amp;lt; Set Scriptable Object might be what you are looking for&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 14:54:02 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/dashboard/m-p/724688#M90771</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-19T14:54:02Z</dc:date>
    </item>
    <item>
      <title>Re: dashboard</title>
      <link>https://community.jmp.com/t5/Discussions/dashboard/m-p/724689#M90772</link>
      <description>&lt;P&gt;Ok merci pour votre réponse !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Est-il possible de voir avec des graphes dans chacun des onglets ? (pour voir la construction)&lt;/P&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:23:35 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/dashboard/m-p/724689#M90772</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-02-19T15:23:35Z</dc:date>
    </item>
    <item>
      <title>Re: dashboard</title>
      <link>https://community.jmp.com/t5/Discussions/dashboard/m-p/724693#M90773</link>
      <description>&lt;P&gt;You could just try and see what happens...&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;but here is an 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");

nw = New Window("Example",
	Tab Box(
		tp = Tab Page Box(
			"a",
			gb = dt &amp;lt;&amp;lt;  Graph Builder(
				Variables(X(:height), Y(:weight)),
				Elements(Points(X, Y), Smoother(X, Y))
			);
	
		),
		Tab Page Box(
			"b",
			gb = dt &amp;lt;&amp;lt; Graph Builder(
				Variables(X(:height), Y(:weight)),
				Elements(Points(X, Y), Smoother(X, Y))
			)
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 19 Feb 2024 15:40:20 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/dashboard/m-p/724693#M90773</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-02-19T15:40:20Z</dc:date>
    </item>
    <item>
      <title>Re: dashboard</title>
      <link>https://community.jmp.com/t5/Discussions/dashboard/m-p/724855#M90831</link>
      <description>&lt;P&gt;Merci pour votre réponse !&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dans la construction du dashboard, il est possible de créer plusieurs onglets qu’à partir du script JSL ou aussi de la faire à la main puis ensuite d’enregistrer le script une fois que le dashboard est créé ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;J’arrive à créer à partir de fichier -&amp;gt; New -&amp;gt; dashboard, ce tableau avec 2 onglets, mais je n’arrive pas à rajouter des graphiques déjà existant dans le deuxième onglet&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="hcarr01_0-1708504311173.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/61296iD36AF9FC848EEB93/image-size/medium?v=v2&amp;amp;px=400" role="button" title="hcarr01_0-1708504311173.png" alt="hcarr01_0-1708504311173.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 21 Feb 2024 08:33:04 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/dashboard/m-p/724855#M90831</guid>
      <dc:creator>hcarr01</dc:creator>
      <dc:date>2024-02-21T08:33:04Z</dc:date>
    </item>
  </channel>
</rss>

