(list)
| 472 | } |
| 473 | |
| 474 | function getMaxTextListLength(list) { |
| 475 | var lengthList = list.map(function(item) { |
| 476 | return measureText(item); |
| 477 | }); |
| 478 | return Math.max.apply(null, lengthList); |
| 479 | } |
| 480 | |
| 481 | function getRadarCoordinateSeries(length) { |
| 482 | var eachAngle = 2 * Math.PI / length; |
no test coverage detected