()
| 139 | } |
| 140 | |
| 141 | private updateOpacities() { |
| 142 | this.d3el |
| 143 | .selectAll('.boxplot') |
| 144 | .style('opacity', (d, i: number) => this.get_mark_opacity(d, i)); |
| 145 | |
| 146 | if (this.legendEl) { |
| 147 | this.legendEl |
| 148 | .selectAll('path') |
| 149 | .attr('opacity', (d, i: number) => this.get_mark_opacity(d, i)); |
| 150 | } |
| 151 | } |
| 152 | |
| 153 | private getBoxWidth() { |
| 154 | let width = this.model.get('box_width'); |
no test coverage detected