(index)
| 89 | |
| 90 | // Build color generation function |
| 91 | function getMarkerColorInfo(index) { |
| 92 | var value, rawColor; |
| 93 | if(Lib.isArrayOrTypedArray(line.color)) { |
| 94 | value = line.color[index % line.color.length]; |
| 95 | rawColor = value; |
| 96 | } else { |
| 97 | value = line.color; |
| 98 | } |
| 99 | |
| 100 | return {color: markerColorscale(value), rawColor: rawColor}; |
| 101 | } |
| 102 | |
| 103 | // Number of values and counts |
| 104 | // --------------------------- |
no outgoing calls
no test coverage detected
searching dependent graphs…