Skip to content

Commit 4b49476

Browse files
apply default cell style from data source
1 parent 9cbc19a commit 4b49476

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/js/PivotView.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -995,7 +995,7 @@ PivotView.prototype.renderRawData = function (data) {
995995
tr = document.createElement("tr");
996996
for (x = info.leftHeaderColumnsNumber; x < rawData[0].length; x++) {
997997

998-
cellStyle = "";
998+
cellStyle = this.controller.CONFIG.pivotProperties["cellStyle"] || "";
999999
tr.appendChild(td = document.createElement("td"));
10001000
td.appendChild(div = document.createElement("div"));
10011001
formatContent(

0 commit comments

Comments
 (0)