Collection: PaletteLines
- Updated2024-09-12
- 1 minute(s) read
(2DPalette | Collections) > Collection: PaletteLines
Collection: PaletteLines
Collection of all PaletteLine objects in DIAdem REPORT. Use the PaletteLines collection to delete the palette color for the line display in a 2D axis system or to add new palette colors.
The following example generates a 2D table with a column and defines the color palette to be used for the display:
| VBScript | Python |
Dim oMy2DAxisSystem, oMyPosition, oMyCurve, oMyLine, oMyPalette, i Call Report.NewLayout() Set oMy2DAxisSystem = Report.ActiveSheet.Objects.Add(eReportObject2DAxisSystem, "My2DAxisSystem") Set oMyPosition = oMy2DAxisSystem.Position.ByCoordinate oMyPosition.X1 = 20 oMyPosition.Y1 = 20 oMyPosition.X2 = 80 oMyPosition.Y2 = 80 Set oMyCurve = oMy2DAxisSystem.Curves2D.Add(e2DShapeLine, "MyCurve") oMyCurve.Shape.XChannel.Reference = "[1]/[1]" oMyCurve.Shape.YChannel.Reference = "[1]/[2]" Set oMyLine = oMyCurve.Shape.Settings.Line oMyLine.Color.ColorIndex = eColorIndexPalette Set oMyPalette = oMyCurve.Shape.Settings.Palette.Lines For i = 1 to oMyPalette.Count Call oMyPalette.Item(i).Color.SetPredefinedColor(i) Next Call Report.Refresh()