Skip to content

Commit

Permalink
removed some commented out lines from the examples
Browse files Browse the repository at this point in the history
  • Loading branch information
mikedewar committed Feb 10, 2013
1 parent 66cfece commit a63ef75
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
1 change: 0 additions & 1 deletion examples/d3py_line.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@

with d3py.PandasFigure(df, 'd3py_line', width=600, height=200) as fig:
fig += d3py.geoms.Line('x', 'y', stroke='BlueViolet')
#fig += d3py.geoms.Point('x', 'y', fill='BlueViolet', opacity=0.9)
fig += d3py.xAxis('x')
fig += d3py.yAxis('y')
fig.show()
1 change: 0 additions & 1 deletion examples/d3py_multiline.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
with d3py.PandasFigure(df, 'd3py_line', width=600, height=200) as fig:
fig += d3py.geoms.Line('x', 'y', stroke='BlueViolet')
fig += d3py.geoms.Line('x', 'z', stroke='DeepPink')
#fig += d3py.geoms.Point('x', 'y', fill='BlueViolet', opacity=0.9)
fig += d3py.xAxis('x')
fig += d3py.yAxis('y')
fig.show()

0 comments on commit a63ef75

Please sign in to comment.