Package GChartWrapper :: Module mako
[hide private]
[frames] | no frames]

Source Code for Module GChartWrapper.mako

1  import GChartWrapper 
2   
3 -def chart(context, chart=None, *args, **kwargs):
4 if chart and chart in dir(GChartWrapper): 5 return getattr(GChartWrapper, chart)(*args, **kwargs) 6 return GChartWrapper.GChart(*args, **kwargs)
7