Object: 2DLabelPosition
- Updated2024-09-12
- 1 minute(s) read
(2DBarsExtensions | 2DLineAndPointsExtensions | 2DSpecialCombinationExtensions) > 2DAdditionalLabel > Object: 2DLabelPosition
Object: 2DLabelPosition
The 2DLabelPosition object provides the properties of the label positions for a 2D curve in the display modes Line and points or Special combination in DIAdem REPORT.
The following example generates a 2D axis system with a curve, assigns two channels to this curve, and displays curve labels:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyLabel 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(e2DShapeLineAndPoints, "MyCurve") oMyCurve.Shape.XChannel.Reference = "[1]/[1]" oMyCurve.Shape.YChannel.Reference = "[1]/[2]" Set oMyLabel = oMyCurve.Shape.Extensions.Label oMyLabel.YValueVisible = True oMyLabel.YValueFormat = "d.dd" oMyLabel.Position.Type = e2DLabelPositionAtPoint oMyLabel.Repetition.Mode = e2DLabelRepetitionMaxNPoints oMyLabel.Repetition.NValue = 10 Call Report.Refresh()