clustergrammer
Version:
This is a clustergram implemented in D3.js. I started from the example http://bost.ocks.org/mike/miserables/ and added the following features
17 lines (11 loc) • 360 B
JavaScript
module.exports = function mouseout_tile(params, inst_selection, tip){
d3.select(inst_selection)
.classed('hovering',false);
d3.selectAll('.tile_tip')
.style('display','none');
_.each(['row','col'], function(inst_rc){
d3.selectAll(params.root+' .'+inst_rc+'_label_group text')
.style('font-weight','normal');
});
tip.hide();
};