*UniformAspectRatio()
Forces the plot window axes to have the same units. This option is controlled via the Options panel.
Syntax
*UniformAspectRatio (1/0)
Application
HyperGraph
Inputs
- 1/0
- Activates/deactivates the uniform aspect ratio option:- 1
- Turns on (activates) the uniform aspect ratio option.
- 0
- Turns off (deactivates) the uniform aspect ratio option.
 
Context
*BeginPage()
*BeginPlot()
*BeginWindow()
Example
*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 module of the plot window.