(indices?)
| 515 | } |
| 516 | |
| 517 | set_default_style(indices?) { |
| 518 | // For all the elements with index in the list indices, the default |
| 519 | // style is applied. |
| 520 | const stroke = this.model.get('stroke'); |
| 521 | |
| 522 | // Update pie slices |
| 523 | this.pieSelection |
| 524 | .select('.slices') |
| 525 | .selectAll('.slice') |
| 526 | .style('fill', (d, i) => this.get_mark_color(d.data, i)) |
| 527 | .style('stroke', stroke) |
| 528 | .style('opacity', (d, i) => this.get_mark_opacity(d.data, i)); |
| 529 | } |
| 530 | |
| 531 | click_handler(args) { |
| 532 | const index = args.index; |
no test coverage detected