4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>dygraphs unboxed
</title>
7 <script type=
"text/javascript" src=
"../excanvas.js"></script>
10 For production (minified) code, use:
11 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
13 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
15 <script type=
"text/javascript" src=
"data.js"></script>
16 <style type=
"text/css">
18 display: inline-block;
23 <p>This shows dygraphs without any boxlike elements (i.e. axes or grids):
</p>
24 <div id=
"div_g" style=
"width:600px; height:300px; border:1px solid white;"></div>
26 <script type=
"text/javascript">
29 document.getElementById(
"div_g"),
38 function toggleBox(btn) {
40 document.getElementById(
"div_g").style.border = show_box ? '
1px solid black' : '
1px solid white';
42 btn.innerHTML = 'Hide box';
44 btn.innerHTML = 'Show box';
49 <button onClick='toggleBox(this)'
>Show box
</button>
51 <!-- Dygraphs constructs a div inside of whatever div we pass in. So the container div can't be a span or have display: inline-block. We use a table to get the sparkline to display on the same line as the text. --
>
53 <table><tr><td>This style can be used to produce interactive sparklines with dygraphs:
</td><td><div id=
"div_spark" style=
"width:100px; height:20px;"></div></td></tr></table>
56 <script type=
"text/javascript">
58 document.getElementById(
"div_spark"),
67 highlightCircleSize:
2