DIAdem Help

Object: AxisLine

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

Object: AxisLine

The AxisLine object provides the line properties of an axis in a 2D axis system in DIAdem REPORT.

The following example generates a 2D axis system, enables individual axis colors and line widths, and specifies the axis colors and line widths:

VBScriptPython

 

Dim oMy2DAxisSystem, oMyPos, oMyXLine, oMyYLine
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
oMy2DAxisSystem.Settings.UseIndividualAxisStyle = True
Set oMyXLine = oMy2DAxisSystem.XAxis.Line
Call oMyXLine.Color.SetPredefinedColor(eColorIndexBlue)
oMyXLine.UseCurveColor = False
oMyXLine.Width = eLineWidth0100 
Set oMyYLine = oMy2DAxisSystem.YAxis.Line
Call oMyYLine.Color.SetPredefinedColor(eColorIndexRed)
oMyYLine.UseCurveColor = False
oMyYLine.Width = eLineWidth0100
Call Report.Refresh()

Properties

Color | UseCurveColor | Width

Returned From

2DAxisX.Line | 2DAxisY.Line