(d, j)
| 428 | } |
| 429 | |
| 430 | hoverfill(d, j) { |
| 431 | const idx = this.model.get('selected'); |
| 432 | const select = idx ? idx : []; |
| 433 | if ( |
| 434 | select.indexOf(d.id) > -1 && |
| 435 | this.validate_color(this.model.get('selected_styles').selected_stroke) |
| 436 | ) { |
| 437 | return this.model.get('selected_styles').selected_stroke; |
| 438 | } else { |
| 439 | return this.model.get('stroke_color'); |
| 440 | } |
| 441 | } |
| 442 | |
| 443 | fill_g_colorfill(d, j) { |
| 444 | const color_scale = this.scales.color; |
no test coverage detected