Add Text to a graph box
I can add formatted text at a specific coordinate using the code below at the time of making the Graph box. New Window( "Example",
Graph Box(
Text Size( 20 );
Text( {50, 20}, "label" );
)
);
However, I can't seem to figure out how to add text later, after the Graph Box has been created. For example I am actually trying to add multiple formatted text items to the graph box in a for loop. I tr...