Skip to content

Commit

Permalink
Use attribute docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
jaraco committed Dec 23, 2016
1 parent d7d58cd commit fac3028
Showing 1 changed file with 9 additions and 5 deletions.
14 changes: 9 additions & 5 deletions svg/charts/bar.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,13 +59,17 @@ class Bar(Graph):
* svg.charts.time_series
"""

# gap between bars
bar_gap = True
# how to stack adjacent dataset series
# overlap - overlap bars with transparent colors
# top - stack bars on top of one another
# side - stack bars side-by-side
"""gap between bars"""

stack = 'overlap'
"""
how to stack adjacent dataset series
overlap - overlap bars with transparent colors
top - stack bars on top of one another
side - stack bars side-by-side
"""

scale_divisions = None

Expand Down

0 comments on commit fac3028

Please sign in to comment.