initial commit
[home-automation.git] / RGraph / examples / rscatter.html
1 <?php ob_start('ob_gzhandler') ?>
2 <!DOCTYPE html >
3 <html>
4 <head>
5     <meta http-equiv="X-UA-Compatible" content="chrome=1">
6     <!--
7         /**
8         * o------------------------------------------------------------------------------o
9         * | This file is part of the RGraph package - you can learn more at:             |
10         * |                                                                              |
11         * |                          http://www.rgraph.net                               |
12         * |                                                                              |
13         * | This package is licensed under the RGraph license. For all kinds of business |
14         * | purposes there is a small one-time licensing fee to pay and for non          |
15         * | commercial  purposes it is free to use. You can read the full license here:  |
16         * |                                                                              |
17         * |                      http://www.rgraph.net/LICENSE.txt                       |
18         * o------------------------------------------------------------------------------o
19         */
20     -->
21
22     <title>RGraph: HTML5 canvas graph library - Radial scatter graph</title>
23     
24     <meta name="keywords" content="rgraph html5 canvas example radial scatter chart" />
25     <meta name="description" content="RGraph: Radial scatter graph example" />
26
27     <link rel="stylesheet" href="../css/website.css" type="text/css" media="screen" />
28     <link rel="icon" type="image/png" href="../images/favicon.png">
29
30     <script src="../libraries/RGraph.common.core.js" ></script>
31     <script src="../libraries/RGraph.common.context.js" ></script>
32     <script src="../libraries/RGraph.common.tooltips.js" ></script>
33     <script src="../libraries/RGraph.common.annotate.js" ></script>
34     <script src="../libraries/RGraph.rscatter.js" ></script>
35     <!--[if IE 8]><script src="../excanvas/excanvas.compressed.js"></script><![endif]-->
36
37     <script>
38         window.onload = function ()
39         {
40             // Create the data
41             var data = [];
42             for (var i=0; i<75; i++) {
43                 data.push([RGraph.random(0, 360), i * RGraph.random(0, 10), null, 'Index: ' + String(i)]);
44             }
45
46             var rscatter1 = new RGraph.Rscatter('cvs', data);
47             rscatter1.Set('chart.labels.axes', 'n');
48             rscatter1.Set('chart.labels.position', 'edge');
49             rscatter1.Set('chart.labels', ['NE', 'E', 'SE', 'S', 'SW', 'W', 'NW', '']);
50             rscatter1.Set('chart.tickmarks', 'plus');
51             rscatter1.Set('chart.tooltips.effect', 'contract');
52             rscatter1.Set('chart.title', 'A Radial scatter graph');
53             rscatter1.Set('chart.title.color', 'black');
54             rscatter1.Set('chart.title.vpos', 0.3);
55             rscatter1.Draw();
56             
57             rscatter2 = new RGraph.Rscatter('cvs2', [[30, 120, 'red'], [350, 100, 'blue']]);
58             rscatter2.Set('chart.contextmenu', [['Palette', RGraph.Showpalette], ['Clear', function () {RGraph.Clear(rscatter2.canvas);rscatter2.Draw();}]]);
59             rscatter2.Set('chart.title', 'A(nother) Radial scatter graph');
60             rscatter2.Set('chart.title.color', 'black');
61             rscatter2.Set('chart.title.vpos', 0.3);
62             rscatter2.Set('chart.annotatable', true);
63             rscatter2.Draw();
64         }
65     </script>
66 </head>
67 <body>
68
69     <!-- Social networking buttons -->
70     
71     <script>
72         function HideTwitterDIV ()
73         {
74             document.getElementById("twitter_div").style.opacity = 0;
75             document.getElementById("twitter_div").style.display = 'none';
76         }
77
78
79         function ShowTwitterDIV (e)
80         {
81             var e   = RGraph.FixEventObject(document.all ? event : e);
82             var div = document.getElementById("twitter_div");
83             var img = document.getElementById("twitter_icon");
84
85             div.style.display = 'block';
86             div.style.left    = (RGraph.getCanvasXY(img)[0] + img.offsetWidth - div.offsetWidth + 110) + 'px';
87             div.style.top     = (RGraph.getCanvasXY(img)[1] - 1) + 'px';
88
89             /**
90             * Fade it in
91             */
92             setTimeout('document.getElementById("twitter_div").style.opacity = 0.2;', 25);
93             setTimeout('document.getElementById("twitter_div").style.opacity = 0.4;', 50);
94             setTimeout('document.getElementById("twitter_div").style.opacity = 0.6;', 100);
95             setTimeout('document.getElementById("twitter_div").style.opacity = 0.8;', 125);
96             setTimeout('document.getElementById("twitter_div").style.opacity = 1.0;', 150);
97
98             e.stopPropagation();
99
100             return false;
101         }
102
103         /**
104         * This code installs the event handler that hides the Twitter DIV
105         */
106         if (RGraph.isIE8()) {
107              window.attachEvent('onload', function () {document.body.attachEvent('onclick', HideTwitterDIV);});
108         } else {
109             window.addEventListener('click', HideTwitterDIV, false);
110         }
111     </script>
112
113     <!-- The twitter DIV --> 
114     <div id="twitter_div" style="position: absolute;top: 0;left: 0;background-color: #eee;border: 2px dashed black;box-shadow: 0 0 15px #aaa;-moz-box-shadow: 0 0 15px #aaa;-webkit-box-shadow: 0 0 15px #aaa;padding: 3px;display: none;opacity: 0;z-index: 99;"> 
115         <a href="http://twitter.com/home/?status=RGraph%3A+HTML5+canvas+graph+library+based+on+the+HTML5+canvas+tag+http%3A%2F%2Fwww.rgraph.net+%23rgraph+%23html5+%23canvas" target="_blank" title="Share on Twitter" rel="nofollow" style="text-decoration: none">Tweet&nbsp;about&nbsp;RGraph</a><br>
116         <a href="http://twitter.com/_rgraph" style="text-decoration: none" rel="nofollow" target="_blank">Follow for HTML5 news</a> 
117     </div>
118
119     <div id="social_icons" class="warning" style="top: 0; left: 5px; position: absolute">
120         <script>
121             // Opera fix
122             if (navigator.userAgent.indexOf('Opera') == -1) {
123               document.getElementById("social_icons").style.position = 'fixed';
124               document.getElementById("twitter_div").style.position = 'fixed';
125     
126             }
127         </script>
128     
129         <b style="display: inline-block; position: relative; top: 1px">Bookmark and share:</b>
130     
131     
132             <div id="social">
133                 <a title="Bookmark with delicious" href="http://delicious.com/save?jump=close&v=4&noui&jump=close&url=http://www.rgraph.net&notes=RGraph%20is%20a%20HTML5%20based%20graph%20library%20supporting%20a%20wide%20range%20of%20different%20graph%20types:Bar,%20Bipolar,%20Donut,%20Funnel,%20Gantt,%20Horizontal%20Bar,%20LED,%20Line,%20Meter,%20Odometer,%20Pie,%20Progress%20Bar,%20Rose,%20RScatter,%20Scatter%20and%20Traditional%20Radar&title=RGraph:%20HTML5%20canvas%20graph%20library%20based%20on%20the%20HTML5%20canvas%20tag" target="_blank">
134                     <img src="../images/delicious.png" alt="Bookmark with delicious" width="22" height="22" border="0" align="absmiddle" /> 
135                 </a> 
136      
137                 <a href="" target="_blank" onmouseover="if (document.getElementById('twitter_div').style.display == 'none') ShowTwitterDIV(event);" onclick="event.stopPropagation(); event.cancelBubble = true; return false">
138                     <img src="../images/twitter.png" id="twitter_icon" alt="tweet this site" width="22" height="22" border="0" align="absmiddle" />
139                 </a>
140     
141     
142 <!--
143                 <a title="Post to Google Buzz!" href="" onclick="window.open('http://www.google.com/buzz/post?url=http://www.rgraph.net&imageurl=http://www.rgraph.net/images/logo.png', 'google_buzz_window', 'width=800,height=400,top=100,left=100'); return false">
144                     <img src="../images/buzz.png" width="22" height="22" alt="Post to Google Buzz!" align="absmiddle" style="position: relative; top: -2px; border: 0" border="0"/>
145                 </a>
146     
147     
148                 <a title="Share RGraph on Facebook" href="" onclick="window.open('http://www.facebook.com/sharer.php?u=http://www.rgraph.net&t=RGraph:%20HTML5%20canvas%20graph%20library', 'facebook_window', 'width=500,height=300,top=100,left=100'); return false">
149                     <img src="../images/facebook.png" width="22" height="22" alt="Post to Facebook" align="absmiddle" style="position: relative; top: -2px; border: 0" border="0"/>
150                 </a>
151     
152                 <a href="mailto:share@friendfeed.com" title="Share on FriendFeed"> 
153                     <img src="../images/friendfeed.png" width="22" height="22" alt="Share on FriendFeed" border="0" align="absmiddle" /> 
154                 </a>
155     
156                 <a href="http://www.stumbleupon.com/submit?url=http://www.rgraph.net" target="_blank" title="Share on StumbleUpon" >
157                     <img src="../images/stumble.png" alt="Stumble! this site" width="22" height="22" border="0" align="absmiddle" /> 
158                 </a>
159 -->
160             </div>
161     </div>
162     <!-- /Social networking buttons -->
163
164
165 <div id="breadcrumb">
166     <a href="../index.html">RGraph: HTML5 canvas graph library</a>
167     >
168     <a href="./index.html">Examples</a>
169     >
170     Radial scatter graph
171 </div>
172
173 <h1>RGraph: HTML5 canvas graph library - Radial scatter graph</h1>
174
175     <script>
176         if (RGraph.isIE8()) {
177             document.write('<div style="background-color: #fee; border: 2px dashed red; padding: 5px"><b>Important</b><br /><br /> Internet Explorer 8 does not natively support the HTML5 canvas tag, so if you want to see the graphs, you can either:<ul><li>Install <a href="http://code.google.com/chrome/chromeframe/">Google Chrome Frame</a></li><li>Use ExCanvas. This is provided in the RGraph Archive.</li><li>Use another browser entirely. Your choices are Firefox 3.5+, Chrome 2+, Safari 4+ or Opera 10.5+. </li></ul> <b>Note:</b> Internet Explorer 9 fully supports the canvas tag. Click <a href="http://groups.google.com/group/rgraph/browse_thread/thread/c5651ff8c56b8f3c#" target="_blank">here</a> to see some screenshots.</div>');
178         }
179     </script>
180     
181     <p>
182         The Radial scatter chart is a circular variant of the regular Scatter chart, and as the name suggests, circular. It
183         may be more suited to your dataset than the regular scatter chart.
184     </p>
185
186     <div>
187         <ul>
188             <li><a href="../docs/rscatter.html">Radial scatter graph API documentation</a></li>
189         </ul>
190     </div>
191
192     <div style="text-align: center">
193         <canvas id="cvs" width="350" height="350">[No canvas support]</canvas>
194         <canvas id="cvs2" width="350" height="350">[No canvas support]</canvas>
195     </div>
196     
197 </body>
198 </html>