DIAdem Help

Object: PolarDifferential

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

Object: PolarDifferential

The PolarDifferential object provides the curve properties in the Differential display mode in a polar axis system in DIAdem REPORT.

The following example generates a polar axis system with a curve in the Differential display mode:

VBScriptPython

 

Dim oMyPolarAxisSystem, oMyPosition, oMyCurve, oMyShape
Call Data.Root.Clear()
Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","")
Call Report.NewLayout()
Set oMyPolarAxisSystem = Report.ActiveSheet.Objects.Add(eReportObjectPolarSystem,"MyPolarSystem")
Set oMyPosition = oMyPolarAxisSystem.Position.ByCoordinate
oMyPosition.X1 = 20
oMyPosition.Y1 = 20
oMyPosition.X2 = 80
oMyPosition.Y2 = 80
Set oMyCurve = oMyPolarAxisSystem.CurvesPolar.Add(ePolarShapeDifferential, "MyNewCurve")
Set oMyShape = oMyCurve.Shape
oMyShape.XChannel.Reference= "[5]/[1]"
oMyShape.YChannel.Reference = "[5]/[2]"
oMyShape.YChannelDifferential.Reference = "[5]/[3]"
Call oMyShape.DifferentialLine.Color.SetPredefinedColor(eColorIndexDarkRed)
Call Report.Refresh()

Returned From

PolarCurve.Shape