(clr, ctx)
| 244 | var _GRAPH_FILL1 = null; |
| 245 | var _GRAPH_FILL2 = null; |
| 246 | function _ctx_graph_fillStyle(clr, ctx) { |
| 247 | clr = _parseRGBA(clr); |
| 248 | if (clr === undefined) { |
| 249 | if (_ctx && _ctx.state && _ctx.state.fill !== undefined) { |
| 250 | clr = _parseRGBA(_ctx.state.fill); |
| 251 | } else { |
| 252 | clr = "rgba(0,0,0,0)"; |
| 253 | } |
| 254 | } |
| 255 | if (_GRAPH_FILL1 != clr || _GRAPH_FILL2 != ctx.fillStyle) { |
| 256 | _GRAPH_FILL1 = ctx.fillStyle = clr; |
| 257 | _GRAPH_FILL2 = ctx.fillStyle; |
| 258 | } |
| 259 | } |
| 260 | |
| 261 | var _GRAPH_STROKE1 = null; |
| 262 | var _GRAPH_STROKE2 = null; |
no test coverage detected
searching dependent graphs…