()
| 406 | } |
| 407 | |
| 408 | change_map_color() { |
| 409 | if (!this.is_object_empty(this.model.get('color'))) { |
| 410 | return; |
| 411 | } |
| 412 | this.fill_g.selectAll('path').style('fill', (d, i) => { |
| 413 | return this.fill_g_colorfill(d, i); |
| 414 | }); |
| 415 | } |
| 416 | |
| 417 | update_style() { |
| 418 | const color_data = this.model.get('color'); |
nothing calls this directly
no test coverage detected