deleting old folder after move
[geo.git] / edit_wp5_web_folder / v1.1_dev / Highcharts-2.1.6 / examples / bar-negative-stack.htm
diff --git a/edit_wp5_web_folder/v1.1_dev/Highcharts-2.1.6/examples/bar-negative-stack.htm b/edit_wp5_web_folder/v1.1_dev/Highcharts-2.1.6/examples/bar-negative-stack.htm
deleted file mode 100644 (file)
index 016c793..0000000
+++ /dev/null
@@ -1,103 +0,0 @@
-<!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,
-                               categories = ['0-4', '5-9', '10-14', '15-19',
-                                       '20-24', '25-29', '30-34', '35-39', '40-44',
-                                       '45-49', '50-54', '55-59', '60-64', '65-69',
-                                       '70-74', '75-79', '80-84', '85-89', '90-94',
-                                       '95-99', '100 +'];
-                       $(document).ready(function() {
-                               chart = new Highcharts.Chart({
-                                       chart: {
-                                               renderTo: 'container',
-                                               defaultSeriesType: 'bar'
-                                       },
-                                       title: {
-                                               text: 'Population pyramid for Germany, midyear 2010'
-                                       },
-                                       subtitle: {
-                                               text: 'Source: www.census.gov'
-                                       },
-                                       xAxis: [{
-                                               categories: categories,
-                                               reversed: false
-                                       }, { // mirror axis on right side
-                                               opposite: true,
-                                               reversed: false,
-                                               categories: categories,
-                                               linkedTo: 0
-                                       }],
-                                       yAxis: {
-                                               title: {
-                                                       text: null
-                                               },
-                                               labels: {
-                                                       formatter: function(){
-                                                               return (Math.abs(this.value) / 1000000) + 'M';
-                                                       }
-                                               },
-                                               min: -4000000,
-                                               max: 4000000
-                                       },
-                                       
-                                       plotOptions: {
-                                               series: {
-                                                       stacking: 'normal'
-                                               }
-                                       },
-                                       
-                                       tooltip: {
-                                               formatter: function(){
-                                                       return '<b>'+ this.series.name +', age '+ this.point.category +'</b><br/>'+
-                                                                'Population: '+ Highcharts.numberFormat(Math.abs(this.point.y), 0);
-                                               }
-                                       },
-                                       
-                                       series: [{
-                                               name: 'Male',
-                                               data: [-1746181, -1884428, -2089758, -2222362, -2537431, -2507081, -2443179,
-                                                       -2664537, -3556505, -3680231, -3143062, -2721122, -2229181, -2227768,
-                                                       -2176300, -1329968, -836804, -354784, -90569, -28367, -3878]
-                                       }, {
-                                               name: 'Female',
-                                               data: [1656154, 1787564, 1981671, 2108575, 2403438, 2366003, 2301402, 2519874,
-                                                       3360596, 3493473, 3050775, 2759560, 2304444, 2426504, 2568938, 1785638,
-                                                       1447162, 1005011, 330870, 130632, 21208]
-                                       }]
-                               });
-                               
-                               
-                       });
-                               
-               </script>
-               
-       </head>
-       <body>
-               
-               <!-- 3. Add the container -->
-               <div id="container" style="width: 800px; height: 400px; margin: 0 auto"></div>
-               
-                               
-       </body>
-</html>