You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Color Maps
-----------
Certain quantative tracks such as the heatmap can vary their colormap. Color maps can be passed in directly as arrays of color values:
.. code-block:: python
Track('heatmap', tileset, colorRange=['white', 'black'])
Or created from a matplotlib colormap (reversed=True reverses the color order in the heatmap):
.. code-block:: python
from higlass.utils import hg_cmap
Track('heatmap', tileset, colorRange=hg_cmap('jet', reverse=True))
A list of available matplotlib color maps can be found [in the matplotlib docs](https://matplotlib.org/3.1.1/gallery/color/colormap_reference.html).
The text was updated successfully, but these errors were encountered:
from the prior docs:
The text was updated successfully, but these errors were encountered: