(arcs)
| 357 | } |
| 358 | |
| 359 | getMaxOffset(arcs) { |
| 360 | let max = 0; |
| 361 | |
| 362 | for (let i = 0, ilen = arcs.length; i < ilen; ++i) { |
| 363 | const options = this.resolveDataElementOptions(i); |
| 364 | max = Math.max(max, options.offset || 0, options.hoverOffset || 0); |
| 365 | } |
| 366 | return max; |
| 367 | } |
| 368 | |
| 369 | /** |
| 370 | * Get radius length offset of the dataset in relation to the visible datasets weights. This allows determining the inner and outer radius correctly |
no test coverage detected