(colors)
| 49 | }; |
| 50 | |
| 51 | function parseColorArray(colors) { |
| 52 | var b = []; |
| 53 | var len = colors.length; |
| 54 | for(var i = 0; i < len; i++) { |
| 55 | b[i] = str2RgbaArray(colors[i]); |
| 56 | } |
| 57 | return b; |
| 58 | } |
| 59 | |
| 60 | // Unpack position data |
| 61 | function toDataCoords(axis, coord, scale, calendar) { |
no test coverage detected
searching dependent graphs…