(points: number[][], dim: number, itemLayout: BoxplotItemLayout)
| 227 | } |
| 228 | |
| 229 | function transInit(points: number[][], dim: number, itemLayout: BoxplotItemLayout) { |
| 230 | return map(points, function (point) { |
| 231 | point = point.slice(); |
| 232 | point[dim] = itemLayout.initBaseline; |
| 233 | return point; |
| 234 | }); |
| 235 | } |
| 236 | |
| 237 | export default BoxplotView; |
no outgoing calls
no test coverage detected
searching dependent graphs…