Object: 2DAdditionalMarker
- Updated2024-09-12
- 1 minute(s) read
(2DLineAndPointsExtensions | 2DLineExtensions | 2DSpecialCombinationExtensions) > Object: 2DAdditionalMarker
Object: 2DAdditionalMarker
The 2DAdditionalMarker object provides the properties of the curve markers in a 2D axis system in DIAdem REPORT.
The following example generates an axis system with a curve and specifies the curve parameters:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyShape, oMySetting, oMyExtension 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") Set oMyShape = oMyCurve.Shape oMyShape.XChannel.Reference = "[1]/[1]" oMyShape.YChannel.Reference = "[1]/[2]" Set oMySetting = oMyShape.Settings Call oMySetting.Line.Color.SetPredefinedColor(eColorIndexBlue) oMySetting.Line.Width = eLineWidth0100 Set oMyExtension = oMyShape.Extensions oMyExtension.Marker.Type = eMarkerCircle oMyExtension.Marker.Size = 3 oMyExtension.Marker.Repetition.Mode = eMarkerRepetitionMaximalNPoints oMyExtension.Marker.Repetition.NValue = 20 Call Report.Refresh()
Properties
Channel | Filling | Line | MinimumDisplaySize | Repetition | Size | Type
Returned From
2DLineAndPointsExtensions.Marker | 2DLineExtensions.Marker | 2DSpecialCombinationExtensions.Marker