We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dbf3e73 commit 6adf481Copy full SHA for 6adf481
source/js/PivotView.js
@@ -424,6 +424,7 @@ PivotView.prototype.renderRawData = function (data) {
424
if (!tr) tr = document.createElement("tr");
425
tr.appendChild(th = document.createElement("th"));
426
th.textContent = rawData[y][x].value;
427
+ if (rawData[y][x].style) th.setAttribute("style", rawData[y][x].style);
428
if (rawData[y][x].group) renderedGroups[rawData[y][x].group] = {
429
x: x,
430
y: y,
0 commit comments