Package GChartWrapper
[hide private]
[frames] | no frames]

Source Code for Package GChartWrapper

 1  from GChartWrapper.GChart import * 
 2   
 3  __all__ = ['Sparkline', 'Map', 'HorizontalBarStack', 'VerticalBarStack', 'QRCode', 
 4  'Line', 'GChart', 'HorizontalBarGroup', 'Scatter', 'Pie3D', 'Pie', 'Meter', 
 5  'Radar', 'RadarSpline', 'VerticalBarGroup', 'LineXY', 'Venn', 'PieC','Pin', 
 6  'Text','Note','Bubble'] 
 7  __version__ = '0.8' 
 8  __author__ = 'Justin Quick <justquick@gmail.com>' 
 9   
10 -def chart(context, chart=None, *args, **kwargs):
11 import GChartWrapper 12 if chart and chart in dir(GChartWrapper): 13 return getattr(GChartWrapper, chart)(*args, **kwargs) 14 return GChartWrapper.GChart(*args, **kwargs)
15