()
| 770 | } |
| 771 | |
| 772 | update_marker_style() { |
| 773 | const that = this; |
| 774 | const fillColor = this.model.get('fill_colors'); |
| 775 | const opacities = this.model.get('opacities'); |
| 776 | this.d3el.selectAll('.curve').each(function (d, i) { |
| 777 | const curve = d3.select(this); |
| 778 | curve |
| 779 | .selectAll('.dot') |
| 780 | .style('opacity', opacities[i]) |
| 781 | .style('fill', that.get_mark_color(d, i) || fillColor[i]); |
| 782 | }); |
| 783 | } |
| 784 | |
| 785 | update_marker(model, marker): void { |
| 786 | if (marker) { |
no test coverage detected