Object: SpiderAdditionalMarker
- Updated2024-09-12
- 1 minute(s) read
(SpiderLineAndPointsExtensions | SpiderLineExtensions) > Object: SpiderAdditionalMarker
Object: SpiderAdditionalMarker
The SpiderAdditionalMarker object provides the properties of the curve markers for a spider axis system in DIAdem REPORT.
The following example generates a spider axis system with a curve in the Line display mode and configures the curve marker:
| VBScript | Python |
Dim oMyAxisSystem, oMyPos, oMyCurve, oMyMarker Call Report.NewLayout() Call Data.Root.Clear() Call DataFileLoad("Example.tdm","TDM","") Set oMyAxisSystem = Report.ActiveSheet.Objects.Add(eReportObjectSpider, "MySpiderAxisSystem") Set oMyPos = oMyAxisSystem.Position.ByCoordinate oMyPos.X1 = 20 oMyPos.X2 = 80 oMyPos.Y1 = 20 oMyPos.Y2 = 80 Set oMyCurve = oMyAxisSystem.CurvesSpider.Add(eSpiderShapeLine, "MySpiderCurve") oMyCurve.Shape.Channel.Reference = "[5]/[3]" Set oMyMarker = oMyCurve.Shape.Extensions.Marker oMyMarker.Type = eMarkerSquare oMyMarker.Size = 3 oMyMarker.Filling.UseCurveColor = True oMyMarker.Line.Width = eLineWidth0050 Call Report.Refresh()
Returned From
SpiderLineAndPointsExtensions.Marker | SpiderLineExtensions.Marker