这是我的甘特条形图。实际上,我需要获取的是我传递的值,例如taskname或任何其他额外值。当我单击任何条形图时,单击事件运行良好,但是单击该条形图时,无法获得任务名称等系列的值。 我的数据格式:
{
"start": "2016-01-01",
"end": "2016-01-14",
"color": "#b9783f",
"task": "Gathering requirements" //that name i need to find when i click on any bar
}
我的点击功能的运行方式就像:
"listeners": [{
"event": "clickGraphItem",
"method": function (event) {
debugger;
alert(event.item.category);
}
}]
如果有人对弹床有任何想法,可以请帮帮我。小提琴的链接是:http://jsfiddle.net/cuo9d2pz/ {{0}}
答案 0 :(得分:1)
您可以通过>>> c = b'\xce\xe4\xe8\xed\xf6\xee\xe2\xf1\xea\xe0\xff \xd0\xdd\xd1'
>>> c
b'\xce\xe4\xe8\xed\xf6\xee\xe2\xf1\xea\xe0\xff \xd0\xdd\xd1'
>>> c.decode('unicode_escape')
'Îäèíöîâñêàÿ ÐÝÑ'
答案 1 :(得分:1)
我设法使用:
event.item.graph.customData.task