@datarailsshared/dr_renderer 1.2.46 → 1.2.47
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
CHANGED
|
@@ -3717,6 +3717,10 @@ let getHighchartsRenderer = function ($, document, Highcharts, default_colors, h
|
|
|
3717
3717
|
};
|
|
3718
3718
|
|
|
3719
3719
|
highchartsRenderer.checkFreezePanesAvaliable = function (pivotView) {
|
|
3720
|
+
if (!pivotView || !pivotView.querySelector) {
|
|
3721
|
+
return;
|
|
3722
|
+
}
|
|
3723
|
+
|
|
3720
3724
|
const tableContainer = pivotView.querySelector('.pivot-div');
|
|
3721
3725
|
const tableHead = pivotView.querySelector('table.pvtTable thead');
|
|
3722
3726
|
const tableHeadChildren = tableHead ? tableHead.children[0] : null;
|