Generate an HTML representation of the MultivarColormap.
(self)
| 1672 | return png_bytes.getvalue() |
| 1673 | |
| 1674 | def _repr_html_(self): |
| 1675 | """Generate an HTML representation of the MultivarColormap.""" |
| 1676 | return ''.join([c._repr_html_() for c in self._colormaps]) |
| 1677 | |
| 1678 | |
| 1679 | class BivarColormap: |
nothing calls this directly
no test coverage detected