我需要为我的trac插件可视化数据。因此,我想使用Open Flash Charts 2。 试图关注this并没有达到预期效果。
问题
Chartdata不会显示,唯一的输出是OFC的加载动画。 一切看起来与教程中的html-source相似。
如何将JSON-数据加载到我的图表中?
其他信息
我写了一个模板,其中应输入处理过的数据。
CHART_TEMPLATE = Template(
'''
<script type=\"text/javascript\" src=\"$json_path/json2.js\">
</script>
<script type=\"text/javascript\" src=\"$js_path/swfobject.js\">
</script>
<script type=\"text/javascript\">
swfobject.embedSWF(\"$ofc_path/open-flash-chart.swf\",
\"$chartname\", \"$width\", \"$height\", \"9.0.0\");
function open_flash_chart_data()
{
alert('reading data');
return JSON.stringify($json_chart_data);
}
function ofc_ready()
{
alert('ofc_ready');
}
</script>
<div id=\"$chartname\"></div>
'''
)
使用Open Flash Charts python将数据转换为JSON,这似乎运行良好。
def chartdata_from_timetable(self, dict, title):
'''
creates chartdata in JSON-format from 2 dim dictionary
'''
elements = []
x_labels = []
dc = DateConversion.DateConversion()
# if startdate on a weekend, startdate might
not be inluced in the dict->
choose next monday
for key in timetable[startdate]:
element = Chart()
element.type = "line"
element.text = key
values = []
for date in dict:
values.append(dict[date][key])
x_labels.append(string_from_date(date))
element.values = values
elements.append(element)
chart = Chart()
chart.x_axis.labels = x_labels
chart.title.text = title
chart.elements = elements
return chart.create().encode()
之后返回以下数据,似乎没有丢失:
CHART_TEMPLATE.safe_substitute(js_path = config['js_dir'],...,
json_chart_data = chart_data)
答案 0 :(得分:0)
您必须检查ofc
中trac.ini
文件夹的路径是否正确
函数chartdata_from_timetable
也不正确。由于覆盖,您只能看到最后一个条目的值。