TrendArea - property of object TrendsView
Description:
Returns the object of the
tvTrendArea type that represents the area where trend graphs are drawn and around which scales are displayed.
Syntax:
TrendArea As Object
Note:
Property access for read only.
Example:
Setting the
Dx property (width of the area where trends are drawn) of the
tvTrendArea object type.
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe.Acx;
var oArea = oTView.TrendArea;
oArea.Dx = 400;
Dim oTView, oArea
Set oTView = pMe.Acx
oArea = oTView.TrendArea
oArea.Dx = 400