Package GChartWrapper :: Package charts :: Module views
[hide private]
[frames] | no frames]

Source Code for Module GChartWrapper.charts.views

 1  from django.shortcuts import render_to_response 
 2   
3 -def example(request):
4 return render_to_response('example.html',{ 5 'venndata': [100,80,60,30,30,30,10], 6 'piedata':[60,40], 7 'bhgdata':['el','or'], 8 'qrstr':'''To the human eye QR Codes look like hieroglyphics, 9 but they can be read by any device that has 10 the appropriate software installed.''' 11 })
12