(d)
| 183 | // since box plot points get an extra level of nesting, each |
| 184 | // box needs the trace styling info |
| 185 | var fn = function(d) { |
| 186 | d.forEach(function(v) { |
| 187 | v.t = t; |
| 188 | v.trace = trace; |
| 189 | }); |
| 190 | return d; |
| 191 | }; |
| 192 | |
| 193 | var gPoints = sel.selectAll('g.points') |
| 194 | .data(mode ? fn : []); |
no outgoing calls
no test coverage detected