We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 250bf46 commit 6e811faCopy full SHA for 6e811fa
2 files changed
source/css/LightPivot.css
@@ -240,6 +240,7 @@
240
}
241
242
.lpt td {
243
+ text-align: right;
244
text-overflow: ellipsis;
245
overflow: hidden;
246
source/js/PivotView.js
@@ -632,6 +632,7 @@ PivotView.prototype.renderRawData = function (data) {
632
for (x = info.leftHeaderColumnsNumber; x < rawData[0].length; x++) {
633
634
tr.appendChild(td = document.createElement("td"));
635
+ if (!isFinite(rawData[y][x].value)) td.className += " formatLeft";
636
td.textContent = rawData[y][x].value || "";
637
if (rawData[y][x].style) td.setAttribute("style", rawData[y][x].style);
638
0 commit comments