Revert "converting CRLF to LF"
[geo.git] / edit_wp5_web_folder / v1.1_dev / Highcharts-2.1.6 / examples / combo-regression.htm
diff --git a/edit_wp5_web_folder/v1.1_dev/Highcharts-2.1.6/examples/combo-regression.htm b/edit_wp5_web_folder/v1.1_dev/Highcharts-2.1.6/examples/combo-regression.htm
new file mode 100644 (file)
index 0000000..ab35aad
--- /dev/null
@@ -0,0 +1,75 @@
+<!DOCTYPE HTML>
+<html>
+       <head>
+               <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+               <title>Highcharts Example</title>
+               
+               
+               <!-- 1. Add these JavaScript inclusions in the head of your page -->
+               <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
+               <script type="text/javascript" src="../js/highcharts.js"></script>
+               
+               <!-- 1a) Optional: add a theme file -->
+               <!--
+                       <script type="text/javascript" src="../js/themes/gray.js"></script>
+               -->
+               
+               <!-- 1b) Optional: the exporting module -->
+               <script type="text/javascript" src="../js/modules/exporting.js"></script>
+               
+               
+               <!-- 2. Add the JavaScript to initialize the chart on document ready -->
+               <script type="text/javascript">
+               
+                       var chart;
+                       $(document).ready(function() {
+                               chart = new Highcharts.Chart({
+                                       chart: {
+                                               renderTo: 'container'
+                                       },
+                                       xAxis: {
+                                               min: -0.5,
+                                               max: 5.5
+                                       },
+                                       yAxis: {
+                                               min: 0
+                                       },
+                                       title: {
+                                               text: 'Scatter plot with regression line'
+                                       },
+                                       series: [{
+                                               type: 'line',
+                                               name: 'Regression Line',
+                                               data: [[0, 1.11], [5, 4.51]],
+                                               marker: {
+                                                       enabled: false
+                                               },
+                                               states: {
+                                                       hover: {
+                                                               lineWidth: 0
+                                                       }
+                                               },
+                                               enableMouseTracking: false
+                                       }, {
+                                               type: 'scatter',
+                                               name: 'Observations',
+                                               data: [1, 1.5, 2.8, 3.5, 3.9, 4.2],
+                                               marker: {
+                                                       radius: 4
+                                               }
+                                       }]
+                               });
+                               
+                       });
+                               
+               </script>
+               
+       </head>
+       <body>
+               
+               <!-- 3. Add the container -->
+               <div id="container" style="width: 800px; height: 400px; margin: 0 auto"></div>
+               
+                               
+       </body>
+</html>