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

Method unselected_style_updated

js/src/Boxplot.ts:228–237  ·  view source on GitHub ↗
(model, style)

Source from the content-addressed store, hash-verified

226 }
227
228 unselected_style_updated(model, style) {
229 this.unselected_style = style;
230
231 const unselectedIndices = this.selected_indices
232 ? _.range(this.model.mark_data.length).filter((index) => {
233 return this.selected_indices.indexOf(index) == -1;
234 })
235 : [];
236 this.style_updated(style, unselectedIndices);
237 }
238
239 //FIXME: should use the selected_style logic
240 private updateSelectedColors(selected_indices) {

Callers

nothing calls this directly

Calls 2

style_updatedMethod · 0.95
rangeMethod · 0.80

Tested by

no test coverage detected