-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Description
I've encountered a couple of issues when working with the dev version:
- When exporting png images (camera symbol), a zoom factor 3 is applied to the heatmap. For larger heatmaps, this results in pretty high memory consumption (up to 1.5 GB). Some input to adjust this factor would be quite useful (I currently use a simple prompt).
For Chrome and Show image, an iframe environment is needed:
function open_image(dataUrl){
// put image data into iframe (otherwise issues with chrome)
var iframe = "<iframe width='100%' height='100%' src='" + dataUrl + "'></iframe>";
var x = window.open();
x.document.open();
x.document.write(iframe);
x.document.close();
// window.open(dataUrl, "_blank");
};
-
Looks like a couple of event handlers were dropped in the dev version. on_color_changed was quite useful for storing and restoring heatmap settings. I guess you dropped some of these handlers which were not used so frequently?
-
The partial rotation of column labels was removed (90/-90 instead of 45/-45). This feature was quite useful for reading the labels or long labels..
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels