DIAdem Help

Object: CurveLegend

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

Object: CurveLegend

The CurveLegend object provides the curve legend object in DIAdem REPORT.

The following example generates a 2D curve and displays the associated curve legend:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyCurve
Call Report.NewLayout()
Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem,"My2DAxisSystem")
Set oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine,"My2DCurve")
oMyCurve.Shape.XChannel.Reference = "[1]/[1]" 
oMyCurve.Shape.YChannel.Reference = "[1]/[2]" 
oMy2DAxisSystem.CurveLegend.Visible = True
Call Report.Refresh()