我正在使用Django-Chartit创建图表。
试图遵循这个例子。
我的问题是我想使用不是来自模型的数据所以我尝试了这段代码
data = \
DataPool(
series=
[{'options': {
'source': [1,2,3,4,5,6,7,8,9,10]},
'terms': [
'month',
'houston_temp',
'boston_temp']}
])
chart = Chart(
datasource = data,
series_options =
[{'options':{
'type': 'line',
'stacking': False},
'terms':{
'month': [
'boston_temp',
'houston_temp']
}}],
chart_options =
{'title': {'text': 'Weather Data of Boston and Houston'},
'xAxis': {'title': {'text': 'Month number'}
}})
我收到一条错误消息
'source' 必须是 QuerySet、Model 或 Manager。取而代之的是 [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] 类型。
我不认为我可以从列表中创建 QuerySet。任何的想法 ?