(d)
| 122 | } |
| 123 | |
| 124 | _bubbleY (d) { |
| 125 | let y = this.y()(this.valueAccessor()(d)); |
| 126 | if (isNaN(y) || !isFinite(y)) { |
| 127 | y = 0; |
| 128 | } |
| 129 | return y; |
| 130 | } |
| 131 | |
| 132 | renderBrush () { |
| 133 | // override default x axis brush from parent chart |
no test coverage detected