PageRenderTime 27ms CodeModel.GetById 33ms RepoModel.GetById 1ms app.codeStats 0ms

/static/RGraph/docs/gutters.html

https://github.com/mneedham/dashboard
HTML | 222 lines | 169 code | 35 blank | 18 comment | 0 complexity | dedbc840ec736b7fcc708509cf24199d MD5 | raw file
  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: Javascript charts and graph library - Variable gutter sizes</title>
  22. <meta name="keywords" content="rgraph html5 canvas chart docs variable gutter sizes" />
  23. <meta name="description" content="RGraph: Javascript charts and graph library - Variable gutter sizes" />
  24. <meta property="og:title" content="RGraph: Javascript charts and graph library" />
  25. <meta property="og:description" content="A charts library based on the HTML5 canvas tag" />
  26. <meta property="og:image" content="http://www.rgraph.net/images/logo.jpg"/>
  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. <script src="../libraries/RGraph.common.core.js" ></script>
  30. <script src="../libraries/RGraph.common.tooltips.js" ></script>
  31. <script src="../libraries/RGraph.common.context.js" ></script>
  32. <script src="../libraries/RGraph.common.zoom.js" ></script>
  33. <script src="../libraries/RGraph.bar.js" ></script>
  34. <!--[if IE 8]><script src="../excanvas/excanvas.original.js"></script><![endif]-->
  35. <script>
  36. window.onload = function (e)
  37. {
  38. var bar = new RGraph.Bar('cvs', [0.2,0.2,0.5,0.6,0.5,0.3,0.5,0.1,0.2,0.7,4.2,3.5]);
  39. bar.Set('chart.ymax', 5);
  40. bar.Set('chart.labels', ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']);
  41. bar.Set('chart.tooltips', ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']);
  42. bar.Set('chart.text.angle', 45);
  43. bar.Set('chart.contextmenu', [['Zoom in', RGraph.Zoom]]);
  44. bar.Set('chart.zoom.hdir', 'left');
  45. bar.Set('chart.title', '2010 statistics (tooltips)');
  46. bar.Set('chart.ylabels.specific', ['100,000','10,000','1,000','100','10']);
  47. bar.Set('chart.background.grid.autofit', true);
  48. bar.Set('chart.background.grid.autofit.align', true);
  49. bar.Set('chart.title.vpos', 0.5);
  50. bar.Set('chart.gutter.left', 65);
  51. bar.Set('chart.gutter.right', 5);
  52. bar.Set('chart.gutter.bottom', 60);
  53. bar.Draw();
  54. }
  55. </script>
  56. <script>
  57. var _gaq = _gaq || [];
  58. _gaq.push(['_setAccount', 'UA-54706-2']);
  59. _gaq.push(['_trackPageview']);
  60. (function() {
  61. var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
  62. ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
  63. var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
  64. })();
  65. </script>
  66. <style>
  67. ol li {
  68. margin-top: 0;
  69. }
  70. </style>
  71. </head>
  72. <body>
  73. <!-- Social networking buttons -->
  74. <div id="social_icons" class="warning" style="border-radius: 10px; top: 1px; position: fixed">
  75. <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%20javascript%20charts%20library%20supporting%20a%20wide%20range%20of%20different%20charts%20types&title=RGraph:Javascript%20charts%20and%20graphs%20library" target="_blank"><img src="../images/delicious.png" alt="Bookmark with delicious" width="22" height="22" border="0" align="absmiddle" /></a>
  76. <a href="http://twitter.com/home/?status=RGraph%3A%20Javascript+charts+and+graph+library+http%3A%2F%2Fwww.rgraph.net+%23rgraph+%23html5+%23canvas+%23javascript+%23charts+@_rgraph" target="_blank"><img src="../images/twitter.png" id="twitter_icon" alt="tweet this site" width="22" height="22" border="0" align="absmiddle" /></a>
  77. <a title="Share RGraph on Facebook" href="" onclick="window.open('http://www.facebook.com/sharer.php?u=http://www.rgraph.net&t=RGraph:%20Javascript%20chart%20and%20graph%20library', 'facebook_window', 'width=500,height=400,top=100,left=100'); return false"><img src="../images/facebook.png" width="22" height="22" alt="Post to Facebook" align="absmiddle" border="0"/></a>
  78. </div>
  79. <script>
  80. // Opera fix
  81. if (navigator.userAgent.indexOf('Opera') == -1) {
  82. document.getElementById("social_icons").style.position = 'fixed';
  83. }
  84. </script>
  85. <!-- Social networking buttons -->
  86. <div id="breadcrumb">
  87. <a href="../index.html">RGraph: Javascript charts and graph library</a>
  88. >
  89. <a href="index.html">Documentation</a>
  90. >
  91. Variable gutter sizes
  92. </div>
  93. <h1>RGraph: Javascript charts and graph library - Variable gutter sizes</h1>
  94. <script>
  95. if (RGraph.isIE8()) {
  96. 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 charts, 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://support.rgraph.net/message/rgraph-in-internet-explorer-9.html" target="_blank">here</a> to see some screenshots.</div>');
  97. }
  98. </script>
  99. <ul>
  100. <li>
  101. <a href="#upgrading">Upgrading from a previous version of RGraph</a>
  102. </li>
  103. </ul>
  104. <canvas id="cvs" width="620" height="300" style="border: 1px dashed gray; float: right">[No canvas support]</canvas>
  105. <p>
  106. New in June 2011 is the much requested feature of seperate gutter sizing. As the chart to the right shows, this means
  107. that you can now easily set the left/right/top/bottom gutters independently. This makes it easy to give
  108. yourself the space that you need for labels, which will be most noticeable with the Bar chart, the Line chart
  109. and similar chart types. There is another example on the <a href="../examples/hbar.html#gutter-example">HBar example page</a>.
  110. </p>
  111. <p>
  112. Because of the fundamental nature of this change (every chart type has been affected)
  113. you should rigorously test your charts if you choose to upgrade.
  114. </p>
  115. <p>
  116. The new properties are:
  117. </p>
  118. <ul>
  119. <li>chart.gutter.left</li>
  120. <li>chart.gutter.right</li>
  121. <li>chart.gutter.top</li>
  122. <li>chart.gutter.bottom</li>
  123. </ul>
  124. <p>
  125. They all default to 25 pixels (with a few exceptions) and each can be set independently.
  126. </p>
  127. <p>
  128. These new properties eliminate the need for certain others. So starting immediately the following properties are no longer
  129. used:
  130. </p>
  131. <ul>
  132. <li>chart.gutter</li>
  133. <li>chart.width</li>
  134. <li>chart.height</li>
  135. <li>chart.tooltips.coords.adjust</li>
  136. <li>chart.resize.handle.adjust</li>
  137. </ul>
  138. <p>
  139. The <i>chart.gutter</i> property has been completely removed, so you will need to start using the new properties immediately.
  140. The <i>chart.width</i> and <i>chart.height</i> properties are completely unused from this point and the last two
  141. will be phased out starting immediately.
  142. </p>
  143. <br clear="all" />
  144. <pre class="code">
  145. &lt;script&gt;
  146. window.onload = function (e)
  147. {
  148. var bar = new RGraph.Bar('cvs', [0.2,0.2,0.5,0.6,0.5,0.3,0.5,0.1,0.2,0.7,4.2,3.5]);
  149. bar.Set('chart.ymax', 5);
  150. bar.Set('chart.labels', ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']);
  151. bar.Set('chart.tooltips', ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December']);
  152. bar.Set('chart.text.angle', 45);
  153. bar.Set('chart.contextmenu', [['Zoom in', RGraph.Zoom]]);
  154. bar.Set('chart.zoom.hdir', 'left');
  155. bar.Set('chart.title', '2010 statistics (tooltips)');
  156. bar.Set('chart.ylabels.specific', ['100,000','10,000','1,000','100','10']);
  157. bar.Set('chart.background.grid.autofit', true);
  158. bar.Set('chart.background.grid.autofit.align', true);
  159. bar.Set('chart.title.vpos', 0.5);
  160. <span style="color: green">bar.Set('chart.gutter.left', 65);
  161. bar.Set('chart.gutter.right', 5);
  162. bar.Set('chart.gutter.bottom', 60);</span>
  163. bar.Draw();
  164. }
  165. &lt;/script&gt;
  166. </pre>
  167. <a name="upgrading"></a>
  168. <h2>Upgrading from a previous version of RGraph</h2>
  169. <p>
  170. If you're upgrading from a previous version of RGraph then there are a few points you should bear in mind:
  171. </p>
  172. <ol>
  173. <li>
  174. Remove any calls to .translate().
  175. If you use the .translate() method to give yourself extra space, this should be converted to the new gutter properties.
  176. </li>
  177. <li>
  178. If you use <i>chart.tooltips.coords.adjust</i> or <i>chart.resize.handle.adjust</i> then you should remove them. These
  179. properties will cease to have any effect eventually, but not immediately.
  180. </li>
  181. <li>
  182. If you use caching, then you may need to use a CTRL/SHIFT+Refresh on your page to bypass any cached copy of the RGraph
  183. libraries.
  184. </li>
  185. </ol>
  186. </body>
  187. </html>