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
ac11ca
Level II

How do I change the title of my figure in chart builder?

How do I change the title of my figure in chart builder?

Thanks,

Adrian

1 ACCEPTED SOLUTION

Accepted Solutions
pmroz
Super User

Re: How do I change the title of my figure in chart builder?

Once you click "Done" you can edit the title.

View solution in original post

9 REPLIES 9
pmroz
Super User

Re: How do I change the title of my figure in chart builder?

In graph builder just double click on the title and type away.  Using Graph > Chart you would do something similar - double click on the word "Chart" next to the red triangle.

ac11ca
Level II

Re: How do I change the title of my figure in chart builder?

That doesnt seem to be working for me. Double (or tripple) clicking on the title just highlight the title. I cant edit it. Screenshot below.

2035_confused.JPG

pmroz
Super User

Re: How do I change the title of my figure in chart builder?

Once you click "Done" you can edit the title.

ac11ca
Level II

Re: How do I change the title of my figure in chart builder?

Thanks!

And how do you change the font size of the axis titles (e.g, in my attached "Number of Outcomes") and labels without changing default preferences in the JMP File/Preferences menu?

Cheers,

Adrian

pmroz
Super User

Re: How do I change the title of my figure in chart builder?

Double-click on the desired axis and you'll get a dialog box that allows you to change most things, including the font size and labels.

ac11ca
Level II

Re: How do I change the title of my figure in chart builder?

Thanks - this allows me to change the font size of the axis numbers, but not the title?

pmroz
Super User

Re: How do I change the title of my figure in chart builder?

Click directly on the title and you can change it.

ac11ca
Level II

Re: How do I change the title of my figure in chart builder?

When I click on the axis title I can change the words but not the font size?

peterj
Level III

Re: How do I change the title of my figure in chart builder?

The following will allow you to change the font size of the x and y labels. I don't know how to change the legend font size though, it doesn't work the same way.

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

Graph Builder(

    Variables( X( :height ), Y( :age ) ),

    Elements( Points( X, Y, Legend( 1 ), Jitter( 1 ) ), Smoother( X, Y, Legend( 2 ) ) ),

    SendToReport( Dispatch( {}, "X title", TextEditBox, {Set Font Size( 20 )} ), ),

    SendToReport( Dispatch( {}, "Y title", TextEditBox, {Set Font Size( 20 )} ), )

);