Skip to content

Commit

Permalink
Ensure Point/Scatter plot correctly categorizes data on inverted axes (
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Oct 4, 2019
1 parent 9768a57 commit f0ad95f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/plotting/bokeh/chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ def get_data(self, element, ranges, style):
xdim, ydim = dims[xidx], dims[yidx]
data[xdim] = element.dimension_values(xidx)
data[ydim] = element.dimension_values(yidx)
self._categorize_data(data, (xdim, ydim), element.dimensions())
self._categorize_data(data, dims[:2], element.dimensions())

cdata, cmapping = self._get_color_data(element, ranges, style)
data.update(cdata)
Expand Down

0 comments on commit f0ad95f

Please sign in to comment.