Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Removed automatic sorting of dimension values
  • Loading branch information
jlstevens committed May 18, 2017
1 parent 5d89ade commit 3d3fd0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion holoviews/core/dimension.py
Expand Up @@ -314,7 +314,7 @@ def __init__(self, spec, **params):
self.warning("The 'initial' string for dimension values is no longer supported.")
values = []

all_params['values'] = sorted(list(unique_array(values)))
all_params['values'] = list(unique_array(values))
super(Dimension, self).__init__(**all_params)


Expand Down

0 comments on commit 3d3fd0b

Please sign in to comment.