Lines Matching refs:colIndex

72427 			for (var colIndex = 0; colIndex < row.length; colIndex++) {
72428 var cell = row[colIndex];
72437 setBorder(rowIndex + rowOffset, colIndex, 0, cell.border[0]);
72442 setBorder(rowIndex + rowOffset, colIndex + colSpan - 1, 2, cell.border[2]);
72449 setBorder(rowIndex, colIndex + colOffset, 1, cell.border[1]);
72454 setBorder(rowIndex + rowSpan - 1, colIndex + colOffset, 3, cell.border[3]);
72462 function setBorder(rowIndex, colIndex, borderIndex, borderValue) {
72463 var cell = body[rowIndex][colIndex];
72745 var colIndex = xs[i].index;
72748 if (colIndex < body[rowIndex].length) {
72749 var cell = body[rowIndex][colIndex];
72755 if (colIndex > 0 && !leftCellBorder) {
72756 var cell = body[rowIndex][colIndex - 1];
72761 if (colIndex + 1 < body[rowIndex].length && !rightCellBorder) {
72762 var cell = body[rowIndex][colIndex + 1];
72771 var fillColor = body[rowIndex][colIndex].fillColor;
72772 var fillOpacity = body[rowIndex][colIndex].fillOpacity;
72774 …his.layout.fillColor) ? this.layout.fillColor(rowIndex, this.tableNode, colIndex) : this.layout.fi…
72777 …layout.fillOpacity) ? this.layout.fillOpacity(rowIndex, this.tableNode, colIndex) : this.layout.fi…
72779 var overlayPattern = body[rowIndex][colIndex].overlayPattern;
72780 var overlayOpacity = body[rowIndex][colIndex].overlayOpacity;
72782 var widthLeftBorder = leftCellBorder ? this.layout.vLineWidth(colIndex, this.tableNode) : 0;
72784 if ((colIndex === 0 || colIndex + 1 == body[rowIndex].length) && !rightCellBorder) {
72785 widthRightBorder = this.layout.vLineWidth(colIndex + 1, this.tableNode);
72787 widthRightBorder = this.layout.vLineWidth(colIndex + 1, this.tableNode) / 2;