()
| 706 | } |
| 707 | |
| 708 | draw_dots(): void { |
| 709 | if (this.model.get('marker')) { |
| 710 | const dots = this.d3el |
| 711 | .selectAll('.curve') |
| 712 | .selectAll('.dot') |
| 713 | .data((d: any, i) => { |
| 714 | return d.values.map((e) => { |
| 715 | return { x: e.x, y: e.y, sub_index: e.sub_index }; |
| 716 | }); |
| 717 | }); |
| 718 | dots.enter().append('path').attr('class', 'dot'); |
| 719 | dots.exit().remove(); |
| 720 | } |
| 721 | } |
| 722 | |
| 723 | update_dots_xy(animate): void { |
| 724 | if (this.model.get('marker')) { |
no test coverage detected