Text position in Graph Box - is there a bug?
Here's the script that roughly does what I need, at least visually:
Names Default To Here( 1 );
New Window( "Example",
Graph Box(
Pen Color("red");
Back Color ("Light Yellow");
Text Color( "red" );
Text( Boxed, Erased, {20, 85}, "MyTextHere" );
Text( Boxed, Erased, {20, 75}, "AnotherTextHere" );
)
);
And I need several labels styled just like that.
But I need them left justified - ...