Dygraph动态更新图例值消失

时间:2016-07-14 10:32:08

标签: javascript dygraphs

我正在使用dygraph来监控CSV文件并使用动态更新功能。当我将鼠标悬停在图表上以显示图例中曲线的值时,一旦图表更新,它们就会消失,这有点烦人。

<html>
<head>
<script type="text/javascript" src="/static/dygraph-combined.js"></script></head>
<body>
<div id="psu"></div>
<script type="text/javascript">
   g = new Dygraph(document.getElementById("psu"), "/data/psu", 
    {
        legend: 'always',
        hideOverlayOnMouseOut: false,
        ylabel: 'current (A)',
        height: 480,
        width: 640,
        sigFigs: 2,
        title: 'power interface monitor',
        xValueFormatter: Dygraph.dateString_,
        xAxisLabelFormatter: Dygraph.dateString_,
        xTicker: Dygraph.dateTicker
    } );
   window.intervalId = setInterval(function(){g.updateOptions( { 'file': "/data/psu" } ); }, 1000);
</script>
</html>

因此图表全部正确显示并且数据已更新,只有图例使用g.updateOptions()刷新后图例值才会消失。我想也许我可以在"mouseover"之后重新触发某种g.updateOptions()事件,这样价值会回来,但可能会有更清晰的方法。

感谢。

1 个答案:

答案 0 :(得分:1)

我找到了解决问题的方法,但我不确定它的实施情况。我在这里分享,以便其他人可以找到它:

 $(document).ready(function() {
   var data = [];
   var t = new Date();
   for (var i = 10; i >= 0; i--) {
     var x = new Date(t.getTime() - i * 1000);
     data.push([x, Math.random()]);
   }

   var last_mousemove_evt = null;
   var on_graph = false;

   var g = new Dygraph(document.getElementById("div_g"), data, {
     legend: 'always',
     drawPoints: true,
     showRoller: true,
     valueRange: [0.0, 1.2],
     labels: ['Time', 'Random'],
     highlightCallback: function(e, x, pts, row) {
       last_mousemove_evt = e;
       on_graph = true
     },
     unhighlightCallback: function(e) {
       on_graph = false;
     }
   });
   // It sucks that these things aren't objects, and we need to store state in window.
   window.intervalId = setInterval(function() {
     var x = new Date(); // current time
     var y = Math.random();
     data.push([x, y]);
     g.updateOptions({
       'file': data
     });
     if (on_graph) {
       g.mouseMove_(last_mousemove_evt);
     }
   }, 1000);
 });
<script src="https://cdnjs.cloudflare.com/ajax/libs/dygraph/1.1.1/dygraph-combined.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<div id="div_g" style="width:600px; height:300px;"></div>

所以我最终使用了highlightCallbackunhighlightCallback选项,因此我可以找出鼠标位置,在动态更新调用之后,然后使用dygraph.mouseMove_()函数重新绘制图例值。似乎工作。

如果周围有更好的解决方案,请告诉我。默认情况下,可以在dygraph.updateOptions()中包含此功能,因为更新后图例值会消失,这似乎很奇怪。