DIAdem Help

Object: WaterfallCurve

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

Object: WaterfallCurve

The WaterfallCurve object provides access to a waterfall curve in a cascade display in DIAdem VIEW. Use the WaterfallCurve object to define the display of the waterfall curve.

The following example creates a cascade display with a waterfall curve:

VBScriptPython

 

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