Hi JMP Community,
I have a problem with a short script associated with a Graph Builder customization that aims at adding annotations to a bar graph. Specifically, I'm trying to adjust the font type and size in this script but I'm getting an error message: Name Unresolved: Font in access or evaluation of 'Font' , Font( "Arial Narrow" ) /*###*/
For( i = 0, i < 46, i = i + 2,
Text (
Center Justified,
{i + 0.5, 0.85},
"p: " || Char( Format( Column( dt, 8 )[i + 1], "PValue" ) ),
Font ("Arial Narrow"),
Font Size (6)
)
);
Of note: without the Font (), and Font Size elements, the script works
Thank you for your help.
TS
Thierry R. Sornasse