Object: 2DBarsHorizontal
- Updated2024-09-12
- 1 minute(s) read
(2DAxisSystem | Collections) > 2DCurves > 2DCurve > Object: 2DBarsHorizontal
Object: 2DBarsHorizontal
The 2DBarsHorizontal object provides the curve properties of a 2D axis system in the Horizontal bars display mode in DIAdem REPORT.
The following example generates an axis system with a curve:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyCurve, oMyPos 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(e2DShapeBarsHorizontal, "MyCurve") oMyCurve.Shape.XChannel.Reference = "[1]/[1]" oMyCurve.Shape.YChannel.Reference = "[1]/[2]" Call Report.Refresh()