()
| 113 | } |
| 114 | |
| 115 | private updateStroke() { |
| 116 | const stroke = this.model.get('stroke'); |
| 117 | |
| 118 | this.d3el |
| 119 | .selectAll('.boxplot') |
| 120 | .selectAll('path, rect') |
| 121 | .style('stroke', stroke); |
| 122 | |
| 123 | this.d3el.selectAll('.outlier').style('stroke', stroke); |
| 124 | |
| 125 | if (this.legendEl) { |
| 126 | this.legendEl.selectAll('path').attr('stroke', stroke); |
| 127 | this.legendEl.selectAll('text').style('fill', stroke); |
| 128 | } |
| 129 | } |
| 130 | |
| 131 | private updateOutlierFillColor() { |
| 132 | this.d3el |