(color: number | null)
| 234 | } |
| 235 | |
| 236 | private getElementFill(color: number | null) { |
| 237 | if (color === null) { |
| 238 | return this.model.get('null_color'); |
| 239 | } |
| 240 | |
| 241 | return this.scales.color.scale(color); |
| 242 | } |
| 243 | |
| 244 | clear_style(style_dict, indices?, elements?) {} |
| 245 |