cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • JMP will suspend normal business operations for our Winter Holiday beginning on Wednesday, Dec. 24, 2025, at 5:00 p.m. ET (2:00 p.m. ET for JMP Accounts Receivable).
    Regular business hours will resume at 9:00 a.m. EST on Friday, Jan. 2, 2026.
  • We’re retiring the File Exchange at the end of this year. The JMP Marketplace is now your destination for add-ins and extensions.

Discussions

Solve problems, and share tips and tricks with other JMP users.
Choose Language Hide Translation Bar
cpark2
Level III

Using Column Switcher with Graphlets

I'm trying to make a series of drill down graphs with graphlets.  I'd like to have the column switcher available in each of the drill down graphs.  Is this possible?  When I try, the column switcher always goes away.

 

 

1 REPLY 1
jthi
Super User

Re: Using Column Switcher with Graphlets

You can for example utilize Click

Names Default To Here(1);
dt = Open("$SAMPLE_DATA/Big Class Families.jmp");

gb = dt << Graph Builder(
	Show Control Panel(0),
	Variables(X(:height), Y(:weight)),
	Elements(Points(X, Y, Legend(4)), Line Of Fit(X, Y, Legend(6))),
	SendToReport(
		Dispatch({}, "Graph Builder", FrameBox,
			{Set Graphlet(
				Picture(
					Distribution(
						Nominal Distribution(Column(:age)),
						Automatic Recalc(1)
					);
				),
				Click(
					dist = Distribution(
						Nominal Distribution(Column(:age)),
						Automatic Recalc(1)
					);
					dist << Column Switcher(:age, {:name, :age, :sex});
				)
			)
			}
		)
	)
);
-Jarmo

Recommended Articles