我正在尝试将工具提示添加到我的流程图区域和线图,以显示该 Y 轴上所有结果的结果,此外,它还将显示最近 Y 轴的工具提示,鼠标不需要完全在点上。例如看看morris.js。最后,我希望能够在同一页面示例上触发多个图表
这是我的情节()的一个例子
$.plot($("#placeholder"), data, {
series: {
stack: true,
lines: { show: lines, fill: true, steps: steps },
bars: { show: bars, barWidth: 0.6 }
}, yaxis: { min: 0}, xaxis: {mode: "time", timeformat: "%H:%M"},
legend : { show: true, container : '#placeholder', noColumns: 9, margin: ['500px', 35]}
});
先感谢您。