希望这些问题不会太混乱或太长,我正在使用Flot示例,特别是this one.
我正在使用flot将我收集的一些数据绘制成Scatter图表。我正在使用以下功能...
function genScatter(){
var no = getSelectedRepeat();
$.get("getPages.json",{rid: no},function(data){
var d1 = [];
$.each(data,function(i,obj){
d1.push([obj.queries,obj.count,{url: obj.url}]);
})
$.plot($("#scatter"), [ { label: "Pages",
data: d1,
lines:{show: false},
points:{show: true}}],{
xaxis:{min: 1},
grid:{ hoverable: true}
});
});
}
我的代码生成带有各种点的散点图。当我将鼠标悬停在一个点上时,以下监听器被激活...
$("#scatter").bind("plothover", function (event, pos, item) {
$("#x").text(pos.x.toFixed(2));
$("#y").text(pos.y.toFixed(2));
if (item) {
if (previousPoint != item.dataIndex) {
previousPoint = item.dataIndex;
$("#tooltip").remove();
var x = item.datapoint[0].toFixed(2),
y = item.datapoint[1].toFixed(2);
/*this would be the line where I extract
the url and forward it to showToolTip.*/
showTooltip(item.pageX, item.pageY,
item.series.label + ": " + y);
}
}
else {
$("#tooltip").remove();
previousPoint = null;
}
});
其中showTooltip
的定义是......
function showTooltip(x, y, contents) {
$('<div id="tooltip">' + contents + '</div>').css( {
position: 'absolute',
display: 'none',
top: y + 5,
left: x + 5,
border: '1px solid #fdd',
padding: '2px',
'background-color': '#fee',
opacity: 0.80
}).appendTo("body").fadeIn(200);
}
基本上,当鼠标悬停在一个点上时,我想将url
的值添加到d1
的点,但由于item
对象,我无法将其添加到url
不会在item.datapoint
内返回url
,只会返回点的x,y值。 item
包含在item.data
内,但在item.data
下的数组中包含图表中的所有其他点。
我的问题是,从flot
中列出的数组中唯一标识点或强制url
在item.datapoint
内包含url
是否有办法获取{ {1}}到相应的点?
答案 0 :(得分:6)
如果您定义了这样的数据结构,那么您应该能够使用(示例here)获取plothover回调中的url:
item.series.data[item.dataIndex][2].url