renaming folder edit_wp5_web_folder to map-service
[geo.git] / map-service / v1.2_dev / Highcharts-2.1.6 / examples / basic-line.htm
diff --git a/map-service/v1.2_dev/Highcharts-2.1.6/examples/basic-line.htm b/map-service/v1.2_dev/Highcharts-2.1.6/examples/basic-line.htm
new file mode 100644 (file)
index 0000000..5b74f43
--- /dev/null
@@ -0,0 +1,48 @@
+<!DOCTYPE HTML>
+<html>
+       <head>
+               <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+               <title>Highstock Example</title>
+               
+               <script type="text/javascript">
+               jQuery(function() {
+                       // Create the chart     
+                       window.chart = new Highcharts.StockChart({
+                           chart: {
+                               renderTo: 'container'
+                           },
+                           
+                           rangeSelector: {
+                               selected: 1
+                           },
+                           
+                           title: {
+                               text: 'USD to EUR exchange rate'
+                           },
+                           
+                           xAxis: {
+                               maxZoom: 14 * 24 * 3600000 // fourteen days
+                           },
+                           yAxis: {
+                               title: {
+                                   text: 'Exchange rate'
+                               }
+                           },
+                               
+                           series: [{
+                               name: 'USD to EUR',
+                               data: usdeur
+                           }]
+                       });
+               });
+               </script>
+               
+       </head>
+       <body>
+                       
+               <script type="text/javascript" src="http://highcharts.com/js/testing-stock-exporting.js"></script>
+               <script type="text/javascript" src="http://highcharts.com/samples/data/usdeur.js"></script>
+               
+               <div id="container" style="height: 500px"></div>                
+       </body>
+</html>