*FooterAlignment()

Specifies the alignment of the footer text in the plot window.

Syntax

*FooterAlignment (alignment)

Application

HyperGraph and HyperGraph 3D

Inputs

alignment
Specifies the justification of the footer text:
0
Aligns the footer text along the left side of the plot window.
1
Aligns the footer text along the right side of the plot window.
2
Centers the footer text along the plot window.

Context

*BeginPage()

*BeginPlot()

*BeginWindow()

Example

To align the footer text along the left side of the plot window:
*BeginPlot()
    *PlotType(0)
    *BeginPlotHeader(On)
        *PrimaryFont("Arial", 0, 0, 14)
        *SecondaryFont("Arial", 0, 0, 10)
        *TertiaryFont("Arial", 0, 0, 10)
        *Color(0)
        *Text("XY Header")
        *HeaderAlignment(0)
    *EndPlotHeader()
    *BeginPlotFooter(On)
        *PrimaryFont("Arial", 0, 0, 10)
        *SecondaryFont("Arial", 0, 0, 10)
        *TertiaryFont("Arial", 0, 0, 10)
        *Color(0)
        *Text("XY Footer")
        *FooterAlignment(0)
    *EndPlotFooter()
    *UniformAspectRatio(0)
	• • •
*EndPlot()

Comments

This statement can be used in the XY Plot, Bar Chart, and Complex Plot modules.