Changes between Version 12 and Version 13 of Charts
- Timestamp:
- Jun 8, 2012, 2:54:35 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Charts
v12 v13 204 204 205 205 {{{ 206 206 from django.http import HttpResponse 207 207 def linechart(request): 208 208 209 209 #instantiate a drawing object 210 d = MyLineChartDrawing() 210 import mycharts 211 d = mycharts.MyLineChartDrawing() 211 212 212 213 #extract the request params of interest. … … 221 222 d.chart.width = 300 222 223 223 d.title. text = request.session.get('Some custom title')224 d.title._text = request.session.get('Some custom title') 224 225 225 226