Object: 2DBackgroundImage
- Updated2024-09-12
- 1 minute(s) read
(ReportObjects | SelectedObjects) > 2DAxisSystem > 2DAxisSettings > Object: 2DBackgroundImage
Object: 2DBackgroundImage
The 2DBackgroundImage object provides the properties of a background graphic in a 2D axis system in DIAdem REPORT.
The following example generates a 2D axis system with a curve and a background graphic:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyCurve, oMyPos, oMyShape, oMySetting, oMyBackgroundImage 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") Set oMyShape = oMyCurve.Shape oMyShape.XChannel.Reference = "[1]/[1]" oMyShape.YChannel.Reference = "[1]/[2]" Set oMySetting = oMy2DAxisSystem.Settings Set oMyBackgroundImage = oMySetting.BackgroundImage oMyBackgroundImage.FileName = "Example1.png" oMyBackgroundImage.Scaling.Enable = True oMyBackgroundImage.Scaling.XBegin = 10 oMyBackgroundImage.Scaling.XEnd = 40 oMyBackgroundImage.Scaling.YBegin = 20 oMyBackgroundImage.Scaling.YEnd = 50 Call Report.Refresh()