DIAdem Help

Object: LabelNumeric

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

Object: LabelNumeric

The LabelNumeric object provides the font attributes of an axis scale in DIAdem REPORT.

The following example generates a 2D axis system and specifies the numbers display on the axes:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyPos, oMyCurve, oMyShape, oMyXNumericLabel, oMyYNumericLabel
Call Data.Root.Clear()
Call DataFileLoad(DataReadPath & "Report_Data.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(e2DShapeLine, "MyCurve")
Set oMyShape = oMyCurve.Shape
oMyShape.XChannel.Reference = "[1]/[1]" 
oMyShape.YChannel.Reference = "[1]/[2]"
Set oMyXNumericLabel = oMy2DAxisSystem.XAxis.Numbers
oMyXNumericLabel.UseCurveColor = True
oMyXNumericLabel.Format = "#nn:ss"
oMyXNumericLabel.Angle = 90
oMyXNumericLabel.Font.Name = "Tahoma"
oMyXNumericLabel.Font.Size = 3
oMyXNumericLabel.RelativePosition = eRelativePositionLeft
Set oMyYNumericLabel = oMy2DAxisSystem.YAxis.Numbers
oMyYNumericLabel.UseCurveColor = True
oMyYNumericLabel.Format = "d.dde"
oMyYNumericLabel.Angle = 0
oMyYNumericLabel.Font.Name = "Tahoma"
oMyYNumericLabel.Font.Size = 3
oMyYNumericLabel.RelativePosition = eRelativePositionLeft
Call Report.Refresh()