基本上它都在标题中。我将json
对象传递给我的模板。这是使用python构建它的方式:
series = []
tab = []
for i,l in reversed(list(enumerate(ts_g))):
try:
z = l[0].split(";")
start_z = ts_g[0][0].split(';')[0]
tmp_d = {
'data': [
[float(start_z), float(z[1])],
],
'label': str(s.description),
'color':str(s.color)
}
series.append(tmp_d)
tab.append([z[0],z[1],s.description])
except Exception:
raise Exception("couldn't get data from vsoil data field\n")
return series, tab.reverse()
所有值均为负数,因此我希望图例反向显示。我怎样才能做到这一点?
答案 0 :(得分:4)
使用sorted: "reverse"
,如文档的Customizing the Legend部分所述。请注意,这需要Flot 0.8,它在技术上仍然是开发版本,但它将在下一周或两周内替换0.7作为稳定版本。