(sel, trace, gd)
| 50 | } |
| 51 | |
| 52 | function styleTextPoints(sel, trace, gd) { |
| 53 | sel.selectAll('text').each(function(d) { |
| 54 | var tx = d3.select(this); |
| 55 | var font = Lib.ensureUniformFontSize(gd, determineFont(tx, d, trace, gd)); |
| 56 | |
| 57 | Drawing.font(tx, font); |
| 58 | }); |
| 59 | } |
| 60 | |
| 61 | function styleOnSelect(gd, cd, sel) { |
| 62 | var trace = cd[0].trace; |
no test coverage detected
searching dependent graphs…