I am getting an error when attempting to "Full Screen" individual Visualizations on my dashboards in Version 6.6. I've found several posts on this going back to 2018, any progress on a resolution would be most appreciated
This is coming from clicking the "Full Screen" under the three buttons at the top of the visualization in the dashboard
Thank you for the info. I developed a simple workaround that seems to resolve the issue, although it needs more test coverage. Also posted to the GitHub thread
This Error is coming from ./dlls/vendors.bundle.dll.js Line 149. The CanvasRenderingContext2D method getImageData() of the Canvas 2D API returns an ImageData object representing the underlying pixel data for a specified portion of the canvas.
The error is being caused by the sw and/or sh parameter values being passed as 0. This can be resolved by checking the values of sw and sh prior to passing them to the getImageData() method
Search ./dlls/vendors.bundle.dll.js for var n=i.getImageData(0,0,this._width, this._height);return
Make the following modification to this segment var imgWidth = ((this._width == 0) ? 500 : this._width); var imgHeight = ((this._height == 0) ? 500 : this._height); var n=i.getImageData(0,0,imgWidth, imgHeight);return
Apache, Apache Lucene, Apache Hadoop, Hadoop, HDFS and the yellow elephant
logo are trademarks of the
Apache Software Foundation
in the United States and/or other countries.