Specifies what attributes to change as a result of autoscaling.

Namespace: Imsl.Chart2D
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual int AutoscaleOutput { get; set; }
Visual Basic (Declaration)
Public Overridable Property AutoscaleOutput As Integer
Visual C++
public:
virtual property int AutoscaleOutput {
	int get ();
	void set (int value);
}

Field Value

An int containing the "AutoscaleOutput" attribute value.

Remarks

Legal values are bitwise-or combinations of the following:
ValueBehavior
AUTOSCALE_OFFDo not do autoscaling.
AUTOSCALE_WINDOWChange the "Window" attribute value.
AUTOSCALE_NUMBERChange the "Number" attribute value.
AUTOSCALE_DENSITYChange the "Density" attribute value.

By default, AutoscaleOutput=|AUTOSCALE_NUMBER | AUTOSCALE_WINDOW | AUTOSCALE_DENSITY).

See Also