Set the color map of the current 'color' scale.
(cmap)
| 527 | |
| 528 | |
| 529 | def set_cmap(cmap): |
| 530 | ''' |
| 531 | Set the color map of the current 'color' scale. |
| 532 | ''' |
| 533 | scale = _context['scales']['color'] |
| 534 | for k, v in _process_cmap(cmap).items(): |
| 535 | setattr(scale, k, v) |
| 536 | return scale |
| 537 | |
| 538 | |
| 539 | def _draw_mark(mark_type, options={}, axes_options={}, **kwargs): |
nothing calls this directly
no test coverage detected
searching dependent graphs…