| 37 |
headerCellStrokeStyle: 'black', |
headerCellStrokeStyle: 'black', |
| 38 |
dataCellFillStyle: 'rgba(0, 0, 0, 0)', |
dataCellFillStyle: 'rgba(0, 0, 0, 0)', |
| 39 |
dataCellStrokeStyle: 'black', |
dataCellStrokeStyle: 'black', |
| 40 |
|
emptyDataCellStrokeStyle: '#C0C0C0', |
| 41 |
overlappingCellFillStyle: 'red', |
overlappingCellFillStyle: 'red', |
| 42 |
overlappingCellStrokeStyle: 'rgba(0, 0, 0, 0)', |
overlappingCellStrokeStyle: 'rgba(0, 0, 0, 0)', |
| 43 |
highlightCellFillStyle: 'yellow' |
highlightCellFillStyle: 'yellow' |
| 141 |
c2d.fillStyle = c[0].is_header |
c2d.fillStyle = c[0].is_header |
| 142 |
? param.headerCellFillStyle : param.dataCellFillStyle; |
? param.headerCellFillStyle : param.dataCellFillStyle; |
| 143 |
c2d.strokeStyle = c[0].is_header |
c2d.strokeStyle = c[0].is_header |
| 144 |
? param.headerCellStrokeStyle : param.dataCellStrokeStyle; |
? param.headerCellStrokeStyle |
| 145 |
|
: c[0].is_empty |
| 146 |
|
? param.emptyDataCellStrokeStyle |
| 147 |
|
: param.dataCellStrokeStyle; |
| 148 |
if (c[0].id) { |
if (c[0].id) { |
| 149 |
var area = document.createElement ('area'); |
var area = document.createElement ('area'); |
| 150 |
area.shape = 'rect'; |
area.shape = 'rect'; |