4 <meta http-equiv=
"X-UA-Compatible" content=
"IE=EmulateIE7; IE=EmulateIE9">
5 <title>Layout Options
</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>
18 <h2>Layout Options Update
</h2>
19 <div id=
"chart" style=
"width:600px; height:300px;"></div>
20 <script type=
"text/javascript">
21 g = new Dygraph(document.getElementById('chart'), data,
27 g.updateOptions({strokeWidth:
28 parseFloat(document.getElementById(
"strokeWidth").value)});
33 <input type=text
id=
"strokeWidth" value=
"2.0" />
34 <input type=button
value=
"Change Stroke Width" onClick=
"change()" />