Skip to content

Commit

Permalink
Color with performance = 1
Browse files Browse the repository at this point in the history
  • Loading branch information
jeammimi committed Mar 15, 2017
1 parent 3377236 commit 827be3f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ipyvolume/volume.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ class Scatter(widgets.DOMWidget):
Array(default_value=None,allow_none=True).tag(sync=True, **array_serialization)],
default_value=0.1).tag(sync=True)
size_selected = traitlets.Float(0.02).tag(sync=True)
color = traitlets.Union([Unicode().tag(sync=True),
Array(default_value=None,allow_none=True).tag(sync=True, **create_array_binary_serialization('color'))],
color = traitlets.Union([Array(default_value=None,allow_none=True).tag(sync=True, **create_array_binary_serialization('color')),
Unicode().tag(sync=True)],
default_value="red").tag(sync=True)
color_selected = traitlets.Unicode(default_value="white").tag(sync=True)
geo = traitlets.Unicode('diamond').tag(sync=True)
Expand Down

0 comments on commit 827be3f

Please sign in to comment.