Object: 2DAdditionalLabel
- Updated2024-09-12
- 1 minute(s) read
(2DBarsExtensions | 2DLineAndPointsExtensions | 2DSpecialCombinationExtensions) > Object: 2DAdditionalLabel
Object: 2DAdditionalLabel
The 2DAdditionalLabel object provides the label properties 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 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()
Properties
Angle | Font | FromChannel | IndexValueFormat | IndexValueVisible | Position | RelativePosition | Repetition | Separator | Text | TextVisible | UseCurveColor | UseLabelOnlyOnFirstExpandedCurve | XValueFormat | XValueVisible | YValueFormat | YValueVisible
Returned From
2DBarsExtensions.Label | 2DLineAndPointsExtensions.Label | 2DSpecialCombinationExtensions.Label