Object: CurveLegendHeader
- Updated2024-09-12
- 1 minute(s) read
(2DAxisSystem | 3DAxisSystem | PieChart | PolarSystem | Spider) > CurveLegend > Object: CurveLegendHeader
Object: CurveLegendHeader
The ColorLegendHeader object provides the title properties of a curve legend in DIAdem REPORT.
The following example generates a 2D curve and displays the associated curve legend with a title:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyPosition, oMyCurve, oMyShape, oMyLegend, oMyAnchor, oMyLegendHeader Call Report.NewLayout() Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem, "My2DAxisSystem") Set oMyPosition = oMy2DAxisSystem.Position.ByCoordinate oMyPosition.X1 = 20 oMyPosition.X2 = 80 oMyPosition.Y1 = 20 oMyPosition.Y2 = 80 Set oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine, "MyNew2DCurve1") oMyCurve.Shape.XChannel.Reference = "[1]/[1]" oMyCurve.Shape.YChannel.Reference = "[1]/[2]" Set oMyLegend = oMy2DAxisSystem.CurveLegend oMyLegend.Visible = True Set oMyAnchor = oMyLegend.Position.Anchor oMyAnchor.PageRelatedX = 70 oMyAnchor.PageRelatedY = 15 oMyLegend.Columns(1).Title = "Legend Title" Set oMyLegendHeader = oMyLegend.Header oMyLegendHeader.ShowGrid = True oMyLegendHeader.PortionHeaderField = 5 Call Report.Refresh()
Properties
Alignment | Angle | Font | PortionHeaderField | ShowGrid | UseAutoFontSize