Hi, I am coding a script to export a lot of data from a Notes database to an Excel sheet including graphs. At the end I would like to format the colors used in the graph. I am currently using the following line for this:
xlApp.ActiveWorkbook.ActiveChart.Legend.LegendEntries(1).LegendKey.Fill.ForeColor.SchemeColor = 3
which is working quite well but would anyone know what to use to get access to the full RGB color palette?
(Like the difference between xlsheet.Cells(1,1).font.color and xlsheet.Cells(1,1).font.colorindex for the cell font color).