DIAdem Help

Property: DataStructure for WaterfallCurve

  • Updated2024-09-12
  • 2 minute(s) read

Property: DataStructure for WaterfallCurve

Specifies the structure of data in waterfall curves in a cascade display in DIAdem VIEW.

Object.DataStructure
ObjectWaterfallCurve
Object with this property
Object.DataStructureEnumeration with read and write access and the following selection terms:
 0
eVIEWCascadeDataStructureXYXY 
Data with x/y-channel pairs
 1
eVIEWCascadeDataStructureXYYY 
Data with one x-channel and n y-channels
 2
eVIEWCascadeDataStructureMatrix 
Data in matrix structure

The following example creates a cascade display with a waterfall curve: The data is a matrix:

VBScriptPython

 

Call Data.Root.Clear()
Call DataFileLoad(ProgramDrv & "Examples\Data\cascade.tdm","TDM","")
Dim oMyDisplayObj, oMyCascadeCurve
Call View.NewLayout
View.ActiveSheet.ActiveArea.DisplayObjType = "Cascade"
Set oMyDisplayObj = View.ActiveSheet.ActiveArea.DisplayObj
Set oMyCascadeCurve = oMyDisplayObj.CurvesCascade.AddCascade("[2]/[1]","[2]/[2]","[2]/[3]")
oMyCascadeCurve.DataStructure = eVIEWCascadeDataStructureMatrix