Skip to content

Commit

Permalink
fix: default y and z label
Browse files Browse the repository at this point in the history
  • Loading branch information
maartenbreddels committed Feb 21, 2017
1 parent 36f46be commit af38f64
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 @@ -76,8 +76,8 @@ class VolumeRendererThree(widgets.DOMWidget):
zlim = traitlets.List(traitlets.CFloat, default_value=[0, 1], minlen=2, maxlen=2).tag(sync=True)

xlabel = traitlets.Unicode("x").tag(sync=True)
ylabel = traitlets.Unicode("x").tag(sync=True)
zlabel = traitlets.Unicode("x").tag(sync=True)
ylabel = traitlets.Unicode("y").tag(sync=True)
zlabel = traitlets.Unicode("z").tag(sync=True)

style = traitlets.Dict(default_value=default_style).tag(sync=True)
#xlim = traitlets.Tuple(traitlets.CFloat(0), traitlets.CFloat(1)).tag(sync=True)
Expand Down

0 comments on commit af38f64

Please sign in to comment.