initial commit
[home-automation.git] / RGraph / examples / showcase.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     <title>RGraph: HTML5 canvas graph library - shwowcase page</title>
22     <link rel="stylesheet" href="../css/website.css" type="text/css" media="screen" />
23     <link rel="icon" type="image/png" href="../images/favicon.png">
24 </head>
25 <body>
26     <div id="breadcrumb">
27         <a href="../index.html">RGraph: HTML5 canvas graph library</a>
28         >
29         <a href="./index.html">Examples</a>
30         >
31         Showcase
32     </div>
33
34     <h1>RGraph: HTML5 canvas graph library - Showcase page</h1>
35
36     <script>
37         if (RGraph.isIE8()) {
38             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>');
39         }
40     </script>
41     
42     <p>
43         Since the showcase page was becoming too slow and heavy and producing an awful lot of graphs, each graph type now has its
44         own example page.
45     </p>
46     
47     <ul>
48         <li><a href="bar.html">Bar chart</a></li>
49         <li><a href="bipolar.html">Bi-polar chart</a></li>
50         <li><a href="donut.html">Donut chart</a></li>
51         <li><a href="funnel.html">Funnel chart</a></li>
52         <li><a href="gantt.html">Gantt chart</a></li>
53         <li><a href="led.html">LED grid</a></li>
54         <li><a href="line.html">Line chart</a></li>
55         <li><a href="odo.html">Odometer</a></li>
56         <li><a href="pie.html">Pie chart</a></li>
57         <li><a href="progress.html">Progress bar</a></li>
58         <li><a href="radar.html">Radar chart</a></li>
59         <li><a href="scatter.html">Scatter graph</a></li>
60         <li><a href="tradar.html">Traditional radar chart</a></li>
61     </ul>
62     
63     <ul>
64         <li><a href="basic.html">A basic example (for implementation help)</a></li>
65     </ul>
66
67 </body>
68 </html>