Labels()

Displays x/y labels on the graphics device

LABELS/DRAW [/XHORIZONTAL] [/YVERTICAL] [/XVERTICAL] [/YHORIZONTAL] xlabel=String ylabel=String [size=Real] [colour=Colour] [font=Font] Draws x and y labels.
LABELS/ALTER [/XHORIZONTAL] [/YVERTICAL] [/XVERTICAL] [/YHORIZONTAL] [xlabel=String] [ylabel=String] [size=Real] [colour=Colour] [font=Font] object=Gobject Alters the x and y labels

example:

	# Draw some labels
	>> a = labels:draw("X Axis", "Y Axis")
	# Wanted capitals
	>> labels/alter "X AXIS" "Y AXIS" object=a

Note: By default xlabel is labelled horizontally, and ylabel is labelled vertically.

Labels/Draw

Draws text just below the x-axis and just to the left of the y-axis.

Parameters:

/Xhorizontal

Sets the xlabels to draw the text horizontally.

/Xvertical

Sets the xlabels to draw the text vertically.

/Yhorizontal

Sets the ylabels to draw the text horizontally.

/Yvertical

Sets the ylabels to draw the text vertically.

Xlabel (String)

Sets the xlabel text.

Ylabel (String)

Sets the ylabel text.

Size (Real)

Sets the size of the text.

Colour (Colour)

Sets the colour of the text.

Font (Font)

Sets the font of the text. Such as, $normal, $roman, $italic, $script

RESULT = (OneDLabels)

Returns all of the properties of the newly created object.

Labels/Alter

Alters any drawableObject with the datatype of OneDLabels.

Parameters:

/Xhorizontal

Sets the xlabels to draw the text horizontally.

/Xvertical

Sets the xlabels to draw the text vertically.

/Yhorizontal

Sets the ylabels to draw the text horizontally.

/Yvertical

Sets the ylabels to draw the text vertically.

Xlabel (String)

Sets the xlabel text.

Ylabel (String)

Sets the ylabel text.

Size (Real)

Sets the size of the text.

Colour (Colour)

Sets the colour of the text.

Font (Font)

Sets the font of the text. Such as, $normal, $roman, $italic, $script

Object (Gobject)

Shows which labels are to be altered, in any one window.

RESULT = (OneDLabels)

Returns all of the properties of the altered object.