void DrawSetTextSize( int nSize )
int nSize
The point size (units of 1/72 inch) of text drawn by subsequent DrawText commands.
This method specifies the point size of text drawn by subsequent DrawText commands.
The default text size is 9 point (9/72 inch).
x = { 1 2 3 4 5 6 7 8 }; y = { 2 1 4 5 6 5 6 9 }; declare ScatterPlot plot; plot = ScatterPlot.Create( "Sample Data", x, y ); plot.DrawSetTextSize( 20 ); plot.DrawText( 50, 50, "Center" );