@datarailsshared/dr_renderer 1.2.110 → 1.2.112
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/dr_pivottable.js +1 -1
- package/src/highcharts_renderer.js +697 -427
- package/src/pivottable.js +2 -2
package/package.json
CHANGED
package/src/dr_pivottable.js
CHANGED
|
@@ -2540,7 +2540,7 @@ let initDRPivotTable = function($, window, document) {
|
|
|
2540
2540
|
if (tooMuch) {
|
|
2541
2541
|
const defaultPlaceholder = $('<div class="noData"><i class="fa fa-info"></i> There are too many rows to display in the table.<br>Please filter or change the table type in options.</div>');
|
|
2542
2542
|
|
|
2543
|
-
resultsArr.push($.pivotUtilities.errorHandling.getErrorPlaceholder(error_params
|
|
2543
|
+
resultsArr.push($.pivotUtilities.errorHandling.getErrorPlaceholder(error_params) || defaultPlaceholder);
|
|
2544
2544
|
} else {
|
|
2545
2545
|
var tableContainer = document.createElement("div");
|
|
2546
2546
|
tableContainer.className = "pivot-div";
|