我注意到 jQuery Flot 正在对结果进行四舍五入。但是,当您将鼠标悬停在工具提示中的峰值和谷值上时,我想显示结果的实际十进制值。但不是 x 或 y 轴标签,而是图形结果本身。
所以我想要“44.05”而不是“44”。
有什么我可以做的吗?我看到的一切都只是轴标签。
工具提示应该允许你这样做 - 看看这个小提琴http://jsfiddle.net/Rnusy/
var previousPoint = null;
$("#placeholder").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);
showTooltip(item.pageX, item.pageY, y);
}
}
else {
$("#tooltip").remove();
previousPoint = null;
}
});
要在工具提示中显示准确的值,请执行以下操作:
tooltipOpts: {
content: "%s : %y.2",
}
其中“y”是您的值,2 是小数位数。