Skip to content

Commit

Permalink
Merge pull request #229 from enthought/fix/colormap-scatterplot-color…
Browse files Browse the repository at this point in the history
…map-class

Fix colormap scatterplot colormap class
  • Loading branch information
rkern committed Oct 27, 2014
2 parents 939f3ef + 853d756 commit ca06549
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions chaco/colormapped_scatterplot.py
Expand Up @@ -15,7 +15,7 @@
# Local, relative imports
from array_data_source import ArrayDataSource
from base import left_shift, right_shift
from color_mapper import ColorMapper
from abstract_colormap import AbstractColormap
from scatterplot import ScatterPlot, ScatterPlotView


Expand Down Expand Up @@ -43,7 +43,7 @@ class ColormappedScatterPlot(ScatterPlot):
color_data = Instance(ArrayDataSource)

# Mapping for colors.
color_mapper = Instance(ColorMapper)
color_mapper = Instance(AbstractColormap)

# The alpha value to apply to the result of the color-mapping process.
# (This makes it easier to create color maps without having to worry
Expand Down

0 comments on commit ca06549

Please sign in to comment.