<< Click to Display Table of Contents >>
ScaleY |
This property indicates the Y scale of an E3Chart to which this Pen is linked. The scale configured for this property has a vertical orientation, that is, it can be positioned to the left or to the right of an E3Chart. Example:
Sub CommandButton1_Click()
Set Chart = Screen.Item("E3Chart1")
Set Pen = Chart.Pens.AddPen("DemoTagPen2")
Pen.YLink = "Data.DemoTag2"
Pen.UseTimeStamp = True
' The scale must exist.
Pen.ScaleY = "ScaleForDemoTag2"
Pen.Connect()
End Sub
This property has no effect when the UseAutomaticAxis property is set to True.