cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
The Discovery Summit 2025 Call for Content is open! Submit an abstract today to present at our premier analytics conference.
Get the free JMP Student Edition for qualified students and instructors at degree granting institutions.
Choose Language Hide Translation Bar
View Original Published Thread

How to include greek letters when editing axis title (without changing column name)

Greeny
Level II

Hi,

Is there a way to insert a Greek letter and special character when editing the axis title of a graph, without changing the column name in the data table? 

 

Thanks in advance. 

2 ACCEPTED SOLUTIONS

Accepted Solutions
txnelson
Super User


Re: How to include greek letters when editing axis title (without changing column name)

You can use the Unicode characters, see JMP Help

// Open Data Table: Big Class.jmp
// → Data Table( "Big Class" )
Open( "/C:/Program Files/SAS/JMPPRO/17/Samples/Data/Big Class.jmp" );

Graph Builder(
	Variables( X( :weight ), Y( :height ) ),
	Elements( Points( X, Y, Legend( 5 ) ), Smoother( X, Y, Legend( 6 ) ) ),
	SendToReport(
		Dispatch( {}, "Y title", TextEditBox, {Set Text( "\!U03C3 height" )} )
	)
);

txnelson_0-1710642315513.png

 

 

Jim

View solution in original post

hogi
Level XII

Re: How to include greek letters when editing axis title (without changing column name)

On a Windows Computer you can click Win + Point to open the Emoji Shortcut panel.

The panel also provides a section with Greek letters.

Fortunately, the greek letters will be displayed correctly.

Next question: what's the issue with the Emojis ?!?!

greekLetters.mp4
Video Player is loading.
Current Time 0:00
Duration 0:33
Loaded: 0.00%
Stream Type LIVE
Remaining Time 0:33
 
1x
    • Chapters
    • descriptions off, selected
    • captions off, selected
    • en (Main), selected
    (view in My Videos)

     

     

     

    View solution in original post

    5 REPLIES 5
    txnelson
    Super User


    Re: How to include greek letters when editing axis title (without changing column name)

    You can use the Unicode characters, see JMP Help

    // Open Data Table: Big Class.jmp
    // → Data Table( "Big Class" )
    Open( "/C:/Program Files/SAS/JMPPRO/17/Samples/Data/Big Class.jmp" );
    
    Graph Builder(
    	Variables( X( :weight ), Y( :height ) ),
    	Elements( Points( X, Y, Legend( 5 ) ), Smoother( X, Y, Legend( 6 ) ) ),
    	SendToReport(
    		Dispatch( {}, "Y title", TextEditBox, {Set Text( "\!U03C3 height" )} )
    	)
    );

    txnelson_0-1710642315513.png

     

     

    Jim
    Greeny
    Level II

    Re: How to include greek letters when editing axis title (without changing column name)

    Thanks, but I was wondering if it is possible to insert the greek letter while manually editing the axis title (without JSL). 

    txnelson
    Super User

    Re: How to include greek letters when editing axis title (without changing column name)

    I am not aware of how to enter the Unicodes interactively, so that JMP recognizes them.  Maybe another Community Member does. 

    Jim
    hogi
    Level XII

    Re: How to include greek letters when editing axis title (without changing column name)

    On a Windows Computer you can click Win + Point to open the Emoji Shortcut panel.

    The panel also provides a section with Greek letters.

    Fortunately, the greek letters will be displayed correctly.

    Next question: what's the issue with the Emojis ?!?!

    greekLetters.mp4
    Video Player is loading.
    Current Time 0:00
    Duration 0:33
    Loaded: 0.00%
    Stream Type LIVE
    Remaining Time 0:33
     
    1x
      • Chapters
      • descriptions off, selected
      • captions off, selected
      • en (Main), selected
      (view in My Videos)

       

       

       

      Greeny
      Level II

      Re: How to include greek letters when editing axis title (without changing column name)

      That worked perfectly. Another super helpful response from you, two days in a row! Thanks so much.