Here's a script that creates a table containing greek characters for the column headings. When you create a graph with graph builder the greek letters show up in the axis titles. I'm using JSL to create the graph, but you could create it manually just as easily.
dt = New Table( "Get Me To The Greek", Add Rows( 3 ),
New Column( "α Parameter", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [1, 2, 3] )
),
New Column( "β Values", Numeric, "Continuous", Format( "Best", 12 ),
Set Values( [3, 2, 1] )
)
);
dt << Graph Builder(
Size( 528, 452 ),
Show Control Panel( 0 ),
Variables( X( :α Parameter ), Y( :β Values ) ),
Elements( Points( X, Y, Legend( 5 ) ), Line( X, Y, Legend( 7 ) ) )
);