Skip to content

Commit

Permalink
Merge pull request #1 from krets/master
Browse files Browse the repository at this point in the history
Added Vertical Bar Over
  • Loading branch information
justquick committed Jun 28, 2014
2 parents 3b4aa0d + af2da16 commit 25d0f88
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion gchart/__init__.py
Expand Up @@ -3,7 +3,7 @@
__all__ = ['Sparkline', 'Map', 'HorizontalBarStack', 'VerticalBarStack', 'QRCode',
'Line', 'BaseChart', 'HorizontalBarGroup', 'Scatter', 'Pie3D', 'Pie', 'Meter',
'Radar', 'RadarSpline', 'VerticalBarGroup', 'LineXY', 'Venn', 'PieC','Pin',
'Text','Note','Bubble','charts','settings','encoding','tests']
'Text','Note','Bubble','charts','settings','encoding','tests','VerticalBarOver']
__version__ = '1.0'
__author__ = 'Justin Quick <justquick@gmail.com>'

Expand Down
3 changes: 2 additions & 1 deletion gchart/charts.py
Expand Up @@ -751,6 +751,8 @@ class HorizontalBarStack(_AbstractBaseChart):
cht = 'bhs'
class VerticalBarStack(_AbstractBaseChart):
cht = 'bvs'
class VerticalBarOver(_AbstractGChart):
cht = 'bvo'
class HorizontalBarGroup(_AbstractBaseChart):
cht = 'bhg'
class VerticalBarGroup(_AbstractBaseChart):
Expand All @@ -774,4 +776,3 @@ class Map(_AbstractBaseChart):
class PieC(_AbstractBaseChart):
cht = 'pc'


0 comments on commit 25d0f88

Please sign in to comment.