Object: ErrorBarEndCap
- Updated2024-09-12
- 1 minute(s) read
(2DLineAndPointsExtensions | 2DLineExtensions | 2DSpecialCombinationExtensions) > 2DAdditionalErrorBars > Object: ErrorBarEndCap
Object: ErrorBarEndCap
The ErrorBarEndCap object provides the properties of the error bars in a 2D axis system in DIAdem REPORT.
The following example generates a 2D axis system with a curve and assigns an error bar to either side of this curve. DIAdem displays the error bars as spikes:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyPos, oMyCurve Call Data.Root.Clear() Call DataFileLoad(DataReadPath & "Report_Data.tdm","TDM","") 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(e2DShapeLine, "MyCurve") oMyCurve.Shape.XChannel.Reference = "[6]/[1]" oMyCurve.Shape.YChannel.Reference = "[6]/[2]" oMyCurve.Shape.Extensions.ErrorBars.YErrorBar.Type = eErrorbarPositiveAndNegative oMyCurve.Shape.Extensions.ErrorBars.YErrorBar.PercentageErrorValue = 10 oMyCurve.Shape.Extensions.ErrorBars.EndCap.Type = eErrorbarDisplaySpike Call Report.Refresh()