SCPI.DISPlay.WINDow(Ch).TRACe(Tr).Y.SPACing

Object Type

Property (Read-Write)

Syntax

SCPI.DISPlay.WINDow(Ch).TRACe(Tr).Y.SPACing = Value

Value = SCPI.DISPlay.WINDow(Ch).TRACe(Tr).Y.SPACing

Description

This command sets or gets Y-Axis format in Log or Linear format.

Variable

Parameter

Param

Description

Vertical axis display type of the graph (in Log or Linear)

Data Type

Character string type (String)

Range

LINear|LOGarithmic

Select from the following:

"LINear": Sets Y-Axis to Linear scale.

"LOGarithmic" : Sets Y-Axis to Log scale.

Preset Value

LINear

Unit

-

Resolution

-

Examples

Dim Bottom as Double, Top As Double

 

SCPI.DISPlay.WINDow(1).TRACe(1).Y.SPACing = "LOG"

SCPI.DISPlay.WINDow(1).TRACe(1).Y.SCALe.BOTTom = 0.00000001

SCPI.DISPlay.WINDow(1).TRACe(1).Y.SCALe.TOP =1000

 

Bottom = SCPI.DISPlay.WINDow(1).TRACe(1).Y.SCALe.BOTTom

Top = SCPI.DISPlay.WINDow(1).TRACe(1).Y.SCALe.TOP

Related Objects

SCPI.DISPlay.WINDow(Ch).TRACe(Tr).Y.SCALe.BOTTom

SCPI.DISPlay.WINDow(Ch).TRACe(Tr).Y.SCALe.TOP

Equivalent Key

Scale > Y-Axis

Equivalent SCPI Command

Syntax

:DISPlay:WINDow{[1]-4}:TRACe{[1]-4}:Y:SPACing {LIN|LOG}

:DISPlay:WINDow{[1]-4}:TRACe{[1]-4}:Y:SPACing?

Query Response

{LIN|LOG}<newline><^END>

Example of use

10 OUTPUT 717;":DISP:WIND1:TRAC1:Y:SPAC LIN"
20 OUTPUT 717;":DISP:WIND1:TRAC1:Y:SPAC?"
30 ENTER 717;A$