You can specify a background image for a cell.
This example sets an image in the cell.
JavaScript |
Copy Code
|
---|---|
$(document).ready(function () { var spread = new GC.Spread.Sheets.Workbook(document.getElementById("ss"),{sheetCount:3}); var activeSheet = spread.getActiveSheet(); //Set backgroundImage to cell(1,1). activeSheet.getCell(1, 1).backgroundImage("Image file path name"); }); |