DIAdem Help

Object: 2DBarsExtensions

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

Object: 2DBarsExtensions

The 2DBarsExtensions object provides the extended properties of a curve in the Bars display mode in a 2D axis system in DIAdem REPORT.

The following example generates an axis system with a bars display:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyShape, oMyExtensions
Call Data.Root.Clear()
Call DataFileLoad("Example.tdm")
Call Report.NewLayout()

Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem, "My2DAxisSystem")
Set oMyPos = oMy2DAxisSystem.Position.ByCoordinate
oMyPos.X1 = 20
oMyPos.X2 = 80
oMyPos.Y1 = 20
oMyPos.Y2 = 80

Set oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeBars, "MyCurve")
Set oMyShape = oMyCurve.Shape
oMyShape.XChannel.Reference = "[4]/[1]" 
oMyShape.YChannel.Reference = "[4]/[2]"

Set oMyExtensions = oMyShape.Extensions
oMyExtensions.Label.TextVisible = True
oMyExtensions.Label.RelativePosition = eRelativePositionPointTop
oMyExtensions.Label.YValueVisible = True
oMyExtensions.Label.YValueFormat = "d.d"
Call Report.Refresh()

Properties

Label