| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
|     <meta charset="utf-8"> | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
|     <meta name="viewport" content="width=device-width, initial-scale=1"> | |
|     <title>Graph2d Examples</title> | |
| 
 | |
|     <!-- Bootstrap --> | |
|     <link href="css/bootstrap.min.css" rel="stylesheet"> | |
| 
 | |
|     <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> | |
|     <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> | |
|     <!--[if lt IE 9]> | |
|     <script src="https://oss.maxcdn.com/html5shiv/3.7.2/html5shiv.min.js"></script> | |
|     <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> | |
|     <![endif]--> | |
| 
 | |
|     <link href="./css/prettify.css" rel="stylesheet" type="text/css" /> | |
|     <script type="text/javascript" src="./js/prettify/prettify.js"></script> | |
|     <script src="./dist/vis.js"></script> | |
|     <link href="./dist/vis.css" rel="stylesheet" type="text/css" /> | |
| 
 | |
|     <style> | |
|         body { | |
|             padding:10px; | |
|         } | |
| 
 | |
|         pre { | |
|             width:450px; | |
|             height:552px; | |
|             overflow:auto; | |
|         } | |
| 
 | |
|         #visualization { | |
|             display:block; | |
|             margin-left:470px; | |
|             margin-top:-562px; | |
|             width:500px; | |
|             height:552px; | |
|             border: 1px solid #dddddd; | |
|             border-radius:4px; | |
|             background-color:#fcfcfc; | |
|         } | |
| 
 | |
|         div.textHTMLContent { | |
|             margin-top:10px; | |
|             margin-bottom:10px; | |
|             display:block; | |
|             width:800px; | |
|         } | |
| 
 | |
|         img { | |
|             border:1px solid #dddddd; | |
|             width:250px; | |
|             height:250px; | |
|             border-radius:10px; | |
|             margin-top:10px; | |
|         } | |
|         div.exampleTitle { | |
|             position:relative; | |
|             top:-7px; | |
|             width:100%; | |
|             max-width:250px; | |
|             height:30px; | |
|             background-color:#064880; | |
|             color:#ffffff; | |
|             text-align:center; | |
|             vertical-align:middle; | |
|             line-height: 30px; | |
|             border-radius:10px; | |
|         } | |
|     </style> | |
|     <script language="JavaScript"> | |
|         function loadVis() { | |
|             var container = document.getElementById('visualization'); | |
|             var items = [ | |
|                 {x: '2014-06-11', y: 10}, | |
|                 {x: '2014-06-12', y: 25}, | |
|                 {x: '2014-06-13', y: 30}, | |
|                 {x: '2014-06-14', y: 10}, | |
|                 {x: '2014-06-15', y: 15}, | |
|                 {x: '2014-06-16', y: 30} | |
|             ]; | |
| 
 | |
|             var dataset = new vis.DataSet(items); | |
|             var options = { | |
|                 start: '2014-06-10', | |
|                 end: '2014-06-18', | |
|                 height:'552px', | |
|                 clickToUse:true | |
|             }; | |
|             var graph2d = new vis.Graph2d(container, dataset, options); | |
|         } | |
|     </script> | |
| 
 | |
| </head> | |
| <body onload="prettyPrint(); loadVis();"> | |
| <h1>Graph2d Examples</h1><a class="btn btn-default" href="#allExamples" role="button">View all examples »</a>  <a class="btn btn-primary" href="./docs/graph2d.html" role="button">View docs »</a> | |
| 
 | |
| <div class="textHTMLContent">This small code example shows the easiest way to get a Graph2d up and running. This code has been taken from example 1. The working example is shown next to it. Click it to start the interaction.</div> | |
| <pre class="prettyprint lang-html"> | |
| <div id="visualization"></div> | |
| <script type="text/javascript"> | |
|     var container = document.getElementById('visualization'); | |
|   var items = [ | |
|     {x: '2014-06-11', y: 10}, | |
|     {x: '2014-06-12', y: 25}, | |
|     {x: '2014-06-13', y: 30}, | |
|     {x: '2014-06-14', y: 10}, | |
|     {x: '2014-06-15', y: 15}, | |
|     {x: '2014-06-16', y: 30} | |
|   ]; | |
| 
 | |
|   var dataset = new vis.DataSet(items); | |
|   var options = { | |
|     start: '2014-06-10', | |
|     end: '2014-06-18' | |
|   }; | |
|   var graph2d = new vis.Graph2d(container, dataset, options); | |
| </script> | |
| </pre> | |
| <div id="visualization"></div> | |
| 
 | |
| <h2 id="allExamples">All examples</h2> | |
| <div class="container-fluid"> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/01_basic.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/1.png"> | |
|             <div class="exampleTitle">basic</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/02_bars.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/2.png"> | |
|             <div class="exampleTitle">bars</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/03_groups.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/3.png"> | |
|             <div class="exampleTitle">groups</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/04_rightAxis.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/4.png"> | |
|             <div class="exampleTitle">right axis</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/05_bothAxis.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/5.png"> | |
|             <div class="exampleTitle">both axis</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/06_interpolation.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/6.png"> | |
|             <div class="exampleTitle">interpolation</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/07_scrollingAndSorting.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/7.png"> | |
|             <div class="exampleTitle">scrolling and sorting</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/08_performance.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/8.png"> | |
|             <div class="exampleTitle">performance</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/09_external_legend.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/9.png"> | |
|             <div class="exampleTitle">external legend</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/10_barsSideBySide.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/10.png"> | |
|             <div class="exampleTitle">bars side by side</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/11_barsSideBySideGroups.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/11.png"> | |
|             <div class="exampleTitle">bars side by side groups</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/12_customRange.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/12.png"> | |
|             <div class="exampleTitle">custom range</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/13_localization.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/13.png"> | |
|             <div class="exampleTitle">localization</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/14_toggleGroups.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/14.png"> | |
|             <div class="exampleTitle">toggle groups</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/15_streaming_data.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/15.png"> | |
|             <div class="exampleTitle">streaming data</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/16_bothAxis_titles.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/16.png"> | |
|             <div class="exampleTitle">axis titles</div> | |
|         </a> | |
|     </div> | |
|     <div class="col-lg-2 col-md-3 col-sm-6"> | |
|         <a href="examples/graph2d/17_dynamicStyling.html"> | |
|             <img class="img-responsive" src="./images/exampleScreenshots/graph2d/17.png"> | |
|             <div class="exampleTitle">dynamic styling</div> | |
|         </a> | |
|     </div> | |
| </div> | |
| <br /> | |
| <br /> | |
| <br /> | |
| <br /> | |
| 
 | |
| <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> | |
| <!-- Include all compiled plugins (below), or include individual files as needed --> | |
| <script src="js/bootstrap.min.js"></script> | |
| </body> | |
| </html> |