MCPcopy Index your code
hub / github.com/bqplot/bqplot / updateStroke

Method updateStroke

js/src/Boxplot.ts:115–129  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers 1

set_default_styleMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected