Object: CurveLegend
- Updated2024-09-12
- 1 minute(s) read
(2DAxisSystem | 3DAxisSystem | PieChart | PolarSystem | Spider) > Object: CurveLegend
Object: CurveLegend
The CurveLegend object provides the curve legend object in DIAdem REPORT.
The following example generates a 2D curve and displays the associated curve legend:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyCurve Call Report.NewLayout() Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem,"My2DAxisSystem") Set oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine,"My2DCurve") oMyCurve.Shape.XChannel.Reference = "[1]/[1]" oMyCurve.Shape.YChannel.Reference = "[1]/[2]" oMy2DAxisSystem.CurveLegend.Visible = True Call Report.Refresh()
Returned From
2DAxisSystem.CurveLegend | 3DAxisSystem.CurveLegend | PieChart.Legend | PolarSystem.CurveLegend | Spider.CurveLegend