cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
  • Learn how to build custom Python data connectors and further customize JMP’s Data Connector Framework with the Python Data Connector Demo, available now in the JMP Marketplace!
  • See how to create experiments to support product design and ID useful product features. Register for June 12 webinar, 2pm US Eastern Time.

Discussions

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

Application Builder - Graph Builder Interface

Hello,

I am new to jmp platform and scripting. In application builder interface, when a button is clicked i want to open the graph builder inferface with loaded data columns (same interface as in Analysis - Graph Builder) where user can create graph needed then import the graph into the app screen. 

 

i want to incroprate all the intractive features of Graph Builder interface (from selecting graph type , multiple x y columns etc) in application builder.

 

With my current understanding :

Is there a source code for Graph builder interface in jmp which can be used directly in appplication developer (or) is it possible to code the interface in the application developer 

Note : Since i am new to jmp scripting .. developing custom graph builder interface is a heavy task. But i can build similar thing in python interface. Is it possible to embed python graph builder interface in Application devleoper of JMP ( If yes please specify the python interface packages supported)

 

 

Thanks in advance 

1 ACCEPTED SOLUTION

Accepted Solutions

Re: Application Builder - Graph Builder Interface

Hi @ComplexNerd - welcome to JMP!

 

I have attached a small JMP Application that demonstrates two ways to launch platforms in response to a button click.  In JSL, a platform launch typically looks like this:

dt << Graph Builder(<options>);

The default behavior when launching platforms is for the new report to create a new window, but you can also embed the platform into an existing window, which I demonstrate in the sample application.  This App was built with the Big Class sample data, but it will run on any JMP data table.

 

I hope that helps!

-Dan

View solution in original post

3 REPLIES 3

Re: Application Builder - Graph Builder Interface

Hi @ComplexNerd - welcome to JMP!

 

I have attached a small JMP Application that demonstrates two ways to launch platforms in response to a button click.  In JSL, a platform launch typically looks like this:

dt << Graph Builder(<options>);

The default behavior when launching platforms is for the new report to create a new window, but you can also embed the platform into an existing window, which I demonstrate in the sample application.  This App was built with the Big Class sample data, but it will run on any JMP data table.

 

I hope that helps!

-Dan

ComplexNerd
Level III

Re: Application Builder - Graph Builder Interface

Thanks for very quick reply. I dint know it was this straightforward. Sorry if it seemed silliy. Thanks a bunch

ComplexNerd
Level III

Re: Application Builder - Graph Builder Interface

also is it possible to export this tabbed report as interactive html. i tried using 

ReportPanel<<Save Interactive HTML("$DESKTOP/example.html");
Current Report()<<Save Interactive HTML("$DESKTOP/example.html");

 

but both didnt reatin the tabbing. 1st one instaed created a stacked plots of generated reports. But local data filters are not interactive in either case. Kindly help Thanks in advance

Recommended Articles