我正在使用nvd3.js
在odoo 9中创建图形视图,因为我如何从我的xml文件中为工具提示赋值,它同时获取x和y轴值,但我必须为其提供新值工具提示
答案 0 :(得分:0)
1)导航到路径中的文件 附加元件/网络/静态/ LIB / nvd3 / nv.d3.js
2)搜索其中的文字&n; nv.models.multiBarChart = function()'
3)`tooltip = function(key, x, y, e, graph) {
return '<h3>' + 'hello world' + '</h3>' +
'<p>' + y + ' on ' + x + '</p>'
}`
以上代码负责显示工具提示
4)所以添加频率值如
list1 = ['a']
list2 = ['b']
if (input[0] in list1 or input[1] in list1) and (input[0] in list2 or input[1] in list2):
print "Choice listed"