(index)
| 182 | } |
| 183 | |
| 184 | getValueAccessorByIndex (index) { |
| 185 | return this._stack[index].accessor || this.valueAccessor(); |
| 186 | } |
| 187 | |
| 188 | yAxisMin () { |
| 189 | const m = min(this._flattenStack(), p => (p.y < 0) ? (p.y + p.y0) : p.y0); |
nothing calls this directly
no test coverage detected