DIAdem Help

Object: 3DBarsSettings

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

Object: 3DBarsSettings

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

The following example generates a 3D axis system with a bar display and specifies the curve parameters:

VBScriptPython

 

Dim oMy3DAxisSystem, oMy3DCurve, oMyPos, oMyShape, oMyLabel, oMyLineSettings
Call Data.Root.Clear()
Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","")
Call Report.NewLayout()
Set oMy3DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject3DAxisSystem,"My3DAxisSystem")
Set oMyPos = oMy3DAxisSystem.Position.ByCoordinate
oMyPos.X1 = 20
oMyPos.X2 = 80
oMyPos.Y1 = 20 
oMyPos.Y2 = 80
Set oMy3DCurve = oMy3DAxisSystem.Curves3D.Add(e3DShapeBars, "MyNew3DCurve")
Set oMyShape = oMy3DCurve.Shape
oMyShape.XChannel.Reference = "[2]/[1]"
oMyShape.YChannel.Reference = "[2]/[2]"
oMyShape.ZChannel.Reference = "[2]/[3]"
Set oMyLineSettings = oMyShape.Settings.Line
Call oMyLineSettings.Color.SetPredefinedColor(eColorIndexBlue)
oMyLineSettings.Width = eLineWidth0100
Call Report.Refresh()

Returned From

3DBars.Settings