在Dygraph中插入复选框

时间:2015-09-18 20:09:43

标签: r dygraphs

http://dygraphs.com/tests/visibility.html

有人知道为dygraphs创建复选框的代码吗?

以下是一个示例代码:

 Date     A      B  
 8/1      5      6
 8/2      6      9
 8/3      2      4

我想创建一个复选框,让您选择A,B或两者。

谢谢!

2 个答案:

答案 0 :(得分:1)

我指的是here中的hiasel解决方案

您可以按照以下3个简单步骤进行操作:- 1)从here获取hide.js文件,并将其放在\ dygraphs \ plugins文件夹中。

2)在

中定义函数
dyHide <-function(dygraph) {
dyPlugin(
dygraph = dygraph,
name = "Hide",
path = system.file("plugins/hide.js", package = "dygraphs")
)
}

3)使用%>% dyHide()

将其添加到图形中

答案 1 :(得分:0)

只需查看示例页面的来源......

   <html>
  <head>
    <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7; IE=EmulateIE9">
    <title>visibility</title>
    <script type="text/javascript" src="../dygraph-dev.js"></script>
    <script type="text/javascript" src="data.js"></script>
  </head>
  <body>
    <h3>Click the check boxes to toggle series visibility</h3>
    <div id="div_g" style="width:600px; height:300px;"></div>

    <p><b>Show Series:</b></p>
    <p>
      <input type=checkbox id="0" onClick="change(this)">
      <label for="0"> A</label><br/>
      <input type=checkbox id="1" checked onClick="change(this)">
      <label for="1"> B</label><br/>
      <input type=checkbox id="2" checked onClick="change(this)">
      <label for="2"> C</label>
    </p>

    <p>g.visibility() = <span id="visibility"></span></p>


    <script type="text/javascript">
      g = new Dygraph(
            document.getElementById("div_g"),
            NoisyDataABC, {
              rollPeriod: 7,
              errorBars: true,
              visibility: [false, true, true]
            }
          );
      setStatus();

      function setStatus() {
        document.getElementById("visibility").innerHTML =
          g.visibility().toString();
      }

      function change(el) {
        g.setVisibility(parseInt(el.id), el.checked);
        setStatus();
      }
    </script>

  </body>
</html>