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 aa19ac3 commit 65df868Copy full SHA for 65df868
source/js/DataController.js
@@ -410,6 +410,7 @@ DataController.prototype.resetRawData = function () {
410
group: groupNum,
411
isCaption: true,
412
source: {},
413
+ noDrillDown: true,
414
value: navigator.language === "ru" ? "Всего" : "Total"
415
};
416
applyHeaderStyle(summary[i], false);
source/js/PivotView.js
@@ -473,7 +473,7 @@ PivotView.prototype.renderRawData = function (data) {
473
}
474
475
// add listeners
476
- if (vertical && x === xTo - 1) {
+ if (vertical && x === xTo - 1 && !rawData[y][x]["noDrillDown"]) {
477
primaryRows.push(th);
478
th.addEventListener(CLICK_EVENT, (function (index, data) {
479
return function () {
0 commit comments