cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Have your say in shaping JMP's future by participating in the new JMP Wish List Prioritization Survey
Choose Language Hide Translation Bar
Greeny
Level II

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

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. 

1 ACCEPTED SOLUTION

Accepted Solutions
hogi
Level XI

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 ?!?!

 

 

 

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 XI

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 ?!?!

 

 

 

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.