You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description of issue: There is an exception thrown during resizing of the browser Window. It looks like the guilty method is exiting prematurely, which I presume is unexpected behaviour. The exception is caused by an undefined 'group' when requesting 'lastFilteredSize' in raster-chart.js method: _chart.data(group => { if (_chart.dataCache !== null) { return _chart.dataCache } const bounds = _chart.getDataRenderBounds() _chart._updateXAndYScales(bounds) _chart._vegaSpec = genLayeredVega( _chart, group, lastFilteredSize(group.getCrossfilterId()) )
The browser console shows:
Uncaught TypeError: Cannot read property 'getCrossfilterId' of undefined
at Object.<anonymous> (mapdc.js:32955)
at Object._chart.data (mapdc.js:5183)
at Object._chart._doRender (mapdc.js:33069)
at Object._chart.render (mapdc.js:5660)
at reSizeAll (example2.html:412)
at complete (lodash.js:8619)
at delayed (lodash.js:8629)
The text was updated successfully, but these errors were encountered:
🪲 Bug
_chart.data(group => { if (_chart.dataCache !== null) { return _chart.dataCache } const bounds = _chart.getDataRenderBounds() _chart._updateXAndYScales(bounds) _chart._vegaSpec = genLayeredVega( _chart, group, lastFilteredSize(group.getCrossfilterId()) )
The browser console shows:
The text was updated successfully, but these errors were encountered: