tvTrendArea - Deatiled object description
See: the
tvTrendArea object.
The object represents the area where graphs are drawn. The area is visually limited by 3D outline around which scales are drawn. The reference to this
tvTrendArea object that is fixed to the viewer, can be obtained by means of the
PmgTrendViewer.TrendArea property.
The object is used only if the
graphic mode is set.
Example:
JavaScriptVBScriptSelect and copy to clipboard
var oTView = pMe;
var oArea = oTView.TrendArea;
oArea.X = 100;
oArea.Y = 100;
oArea.Dx = 400;
oArea.Dy = 350;
oArea.Width3D = 2;
oArea.Color = "#bbbbbb";
// color setting by RGB String in the form "#RRGGBB"
Dim oTView, oArea
Set oTView = pMe
Set oArea = oTView.TrendArea
oArea.X = 100
oArea.Y = 100
oArea.Dx = 400
oArea.Dy = 350
oArea.Width3D = 2
oArea.Color = "#bbbbbb"
' color setting by RGB String in the form "#RRGGBB"