cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
JMP is taking Discovery online, April 16 and 18. Register today and join us for interactive sessions featuring popular presentation topics, networking, and discussions with the experts.
Choose Language Hide Translation Bar
kaushik_pushpen
Level III

How to remove title from Variability chart ?

Hello all,

I want to remove the title coming in my variability chart  "Variability Chart for CD-Value" automatically for the purpose of printing.

How can i proceed to it?

Please guide me. Thanks in advance.

7 REPLIES 7
robot
Level VI

Re: How to remove title from Variability chart ?

If you want only the graph, without any reference to the title texts, one way is to create a journal of only the parts you would like.  You can then print the journal.

// Example.

bigClass = Open( "$SAMPLE_DATA/Big Class.jmp" );

var = bigClass << Variability Chart( Y( :height ), X( :age ) );

rvar = var << Report; // Create display box reference.

graph = rvar[List Box( 2 )]; // Create graph reference.

graph << Select;

graph << Journal;

graph << Deselect;

KarenC
Super User (Alumni)

Re: How to remove title from Variability chart ?

Or you can use the selection tool (the fat plus sign on the tool bar) and select the portion that you want to print, cut and paste it into another application (such as a slide or a word processing program) and print from there.  You should also take a look at Daniel Vs recent blog post on graphics: Preview of 2015 Discovery Summit Presentation on Best Practices for Producing High Quality Graphics ....

Karen

kaushik_pushpen
Level III

Re: How to remove title from Variability chart ?

Thanks Karen

kaushik_pushpen
Level III

Re: How to remove title from Variability chart ?

Thanks Karen for the reply.

In my variability chart one is Title and second is "Variability chart for height" coming. I just want to remove second one list item not the title.

Your program is working OK. But it is removing title also.

Please suggest me.

Thanks in advance.

mpb
mpb
Level VII

Re: How to remove title from Variability chart ?

The code I posted on August 6 works for me on JMP 12.It displays the Title ("Variability Gauge") and removes the text "Variability Chart for height". What happens when you run it?

Michael

mpb
mpb
Level VII

Re: How to remove title from Variability chart ?

This example may be helpful:

Open( "$SAMPLE_DATA/Big Class.jmp" );

Variability Chart(

    Y( :height ),

    X( :Age ),

    Variance Components( Nested ),

    Show Points( 1 ),

    Std Dev Chart( 1 ),

    SendToReport(

        Dispatch( {}, "Variability Chart for  height", OutlineBox, {Set Title( "" )} )

))


Phil_Kay
Staff

Re: How to remove title from Variability chart ?

Lots of great answers here.

Useful tip: to remove any title from within a report, double click on the text of the title, delete all the text, and hit enter/return. The title will vanish!