DIAdem Help

Object: 2DBarsSettings

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

Object: 2DBarsSettings

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

The following example generates an axis system with a curve and specifies the curve parameters:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyShape, oMySettings
Call Data.Root.Clear()
Call DataFileLoad(DataReadPath & "Example.tdm","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 = "" 
oMyShape.YChannel.Reference = "[4]/[1]" 
Set oMySettings = oMyShape.Settings
Call oMySettings.BorderLine.Color.SetPredefinedColor(eColorIndexBlue)
Call oMySettings.Filling.Color.SetPredefinedColor(eColorIndexDarkRed)
Call Report.Refresh()

Returned From

2DBars.Settings