You can set background and foreground colors for cells, columns, rows, headers, and the widget.
Set the backColor or foreColor methods for cells, columns, headers, or rows. You can set the backColor method or use themes for the widget. You can use the options.grayAreaBackColor property for the gray area.
For more information about themes, refer to Using Themes. You can also use styles to set cell colors. For more information, refer to Setting Styles.
This example sets the foreColor and backColor for cell B2.
JavaScript |
Copy Code
|
---|---|
//Set the backcolor and forecolor of cells. var cell = activeSheet.getCell(1, 1, GC.Spread.Sheets.SheetArea.viewport); cell.backColor("Blue"); cell.foreColor("Red"); cell.value("Color"); |
This example sets the forecolor and backcolor for the header.
JavaScript |
Copy Code
|
---|---|
//Set the backcolor and forecolor for the entire column header. //Set the backcolor for the second row header. |