(data, index)
| 535 | } |
| 536 | |
| 537 | get_fill_color(data, index): string { |
| 538 | const fillColors: string = this.model.get('fill_colors'); |
| 539 | return fillColors.length === 0 |
| 540 | ? this.get_mark_color(data, index) |
| 541 | : fillColors[index]; |
| 542 | } |
| 543 | |
| 544 | update_line_xy(animate): void { |
| 545 | const xScale = this.scales.x, |
no test coverage detected