4 <title>dygraphs unboxed
</title>
6 For production (minified) code, use:
7 <script type=
"text/javascript" src=
"dygraph-combined.js"></script>
9 <script type=
"text/javascript" src=
"../dygraph-dev.js"></script>
11 <script type=
"text/javascript" src=
"data.js"></script>
12 <style type=
"text/css">
14 display: inline-block;
19 <p>This shows dygraphs without any boxlike elements (i.e. axes or grids):
</p>
20 <div id=
"div_g" style=
"width:600px; height:300px; border:1px solid white;"></div>
22 <script type=
"text/javascript">
25 document.getElementById(
"div_g"),
40 function toggleBox(btn) {
42 document.getElementById(
"div_g").style.border = show_box ? '
1px solid black' : '
1px solid white';
44 btn.innerHTML = 'Hide box';
46 btn.innerHTML = 'Show box';
51 <button onClick='toggleBox(this)'
>Show box
</button>
53 <!-- 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. --
>
55 <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>
58 <script type=
"text/javascript">
60 document.getElementById(
"div_spark"),
75 highlightCircleSize:
2