You can use a JMP 17 custom format to do it. (Test this code to make sure it does what you want!) Copy this
If(
Pat Match(
Format( :value, "Scientific", :width ),
Pat Pos( 0 ) + Pat Immediate( Pat Break( "e" ), f ) + "e"
+Pat Immediate( Pat Rem(), e )
),
f || "⨉10" || Substitute( e,
"+", "⁺",
"-", "⁻",
"0", "⁰",
"1", "¹",
"2", "²",
"3", "³",
"4", "⁴",
"5", "⁵",
"6", "⁶",
"7", "⁷",
"8", "⁸",
"9", "⁹"
),
Char( :value, :width, :dec )
)
Then open the axis dialog, Format->custom, set custom, paste.
The custom format uses the scientific format to make the "e" format then parses the fraction and exponent. It then reassembles the number with some Unicode characters. If you are not seeing exponents and multiplies and signs, your font might not include them. If the parse step fails, the custom format falls back to the char() function.
edit: @XanGregg post Reply All: Scientific notation such as 6.02×10²³ using custom axis formats
Craige