Object: AdditionalLineEndLabel
- Updated2024-09-12
- 1 minute(s) read
(2DLineAndPointsExtensions | 2DSpecialCombinationExtensions) > Object: AdditionalLineEndLabel
Object: AdditionalLineEndLabel
The AdditionalLineEndLabel object provides curve end labels in 2D axis systems in DIAdem REPORT.
The following example generates a 2D axis system with curve end labels:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyEndLabel 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(e2DShapeSpecialCombination, "MyCurve") oMyCurve.Shape.XChannel.Reference = "[1]/[1]" oMyCurve.Shape.YChannel.Reference = "[1]/[2]" Set oMyEndLabel = oMyCurve.Shape.Extensions.EndLabel oMyEndLabel.Position = e2DLineEndLabelPositionLargestXValue oMyEndLabel.Type = e2DLineEndLabelCustomText oMyEndLabel.Text = "End label" Call Report.Refresh()
Properties
Angle | BackgroundColor | Font | Position | RelativePosition | ShowAtNoValues | Text | Type | UseCurveColor | UseLabelOnlyOnFirstExpandedCurve | UseXPositionOffset | UseYPositionOffset | XPositionOffset | YPositionOffset
Returned From
2DLineAndPointsExtensions.EndLabel | 2DSpecialCombinationExtensions.EndLabel