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
19 lines (13 loc) • 409 B
JavaScript
module.exports = function mouseout_tile(params, inst_selection, tip){
d3.select(inst_selection)
.classed('hovering',false);
d3.selectAll(params.viz.root_tips + '_tile_tip')
.style('display','none');
_.each(['row','col'], function(inst_rc){
d3.selectAll(params.root+' .'+inst_rc+'_label_group text')
.style('font-weight','normal');
});
if (tip != null){
tip.hide();
}
};