<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -17,6 +17,6 @@ Rake::RDocTask.new(:rdoc) do |rdoc|
   rdoc.rdoc_dir = 'rdoc'
   rdoc.title    = 'Html5jpGraphs'
   rdoc.options &lt;&lt; '--line-numbers' &lt;&lt; '--inline-source'
-  rdoc.rdoc_files.include('README')
+  rdoc.rdoc_files.include('README.rdoc')
   rdoc.rdoc_files.include('lib/**/*.rb')
 end</diff>
      <filename>Rakefile</filename>
    </modified>
    <modified>
      <diff>@@ -86,8 +86,10 @@
       &lt;h3 class=&quot;section-bar&quot;&gt;Methods&lt;/h3&gt;
 
       &lt;div class=&quot;name-list&quot;&gt;
-      &lt;a href=&quot;#M000001&quot;&gt;pie_chart&lt;/a&gt;&amp;nbsp;&amp;nbsp;
+      &lt;a href=&quot;#M000003&quot;&gt;line_chart&lt;/a&gt;&amp;nbsp;&amp;nbsp;
+      &lt;a href=&quot;#M000004&quot;&gt;pie_chart&lt;/a&gt;&amp;nbsp;&amp;nbsp;
       &lt;a href=&quot;#M000002&quot;&gt;radar_chart&lt;/a&gt;&amp;nbsp;&amp;nbsp;
+      &lt;a href=&quot;#M000001&quot;&gt;vertical_bar_chart&lt;/a&gt;&amp;nbsp;&amp;nbsp;
       &lt;/div&gt;
     &lt;/div&gt;
 
@@ -109,11 +111,121 @@
     &lt;div id=&quot;methods&quot;&gt;
       &lt;h3 class=&quot;section-bar&quot;&gt;Public Instance methods&lt;/h3&gt;
 
-      &lt;div id=&quot;method-M000001&quot; class=&quot;method-detail&quot;&gt;
-        &lt;a name=&quot;M000001&quot;&gt;&lt;/a&gt;
+      &lt;div id=&quot;method-M000003&quot; class=&quot;method-detail&quot;&gt;
+        &lt;a name=&quot;M000003&quot;&gt;&lt;/a&gt;
 
         &lt;div class=&quot;method-heading&quot;&gt;
-          &lt;a href=&quot;#M000001&quot; class=&quot;method-signature&quot;&gt;
+          &lt;a href=&quot;#M000003&quot; class=&quot;method-signature&quot;&gt;
+          &lt;span class=&quot;method-name&quot;&gt;line_chart&lt;/span&gt;&lt;span class=&quot;method-args&quot;&gt;(resource, options = {}, html_options = {})&lt;/span&gt;
+          &lt;/a&gt;
+        &lt;/div&gt;
+      
+        &lt;div class=&quot;method-description&quot;&gt;
+          &lt;p&gt;
+Draw a line chart using Html5jp radar chart (&lt;a
+href=&quot;http://www.html5.jp/library/graph_line.html&quot;&gt;www.html5.jp/library/graph_line.html&lt;/a&gt;).
+&lt;/p&gt;
+&lt;p&gt;
+ex.
+&lt;/p&gt;
+&lt;pre&gt;
+  &amp;lt;%= line_chart [['accesses', 520, 340, 804, 602], ['clicks', 101, 76, 239, 321]] %&amp;gt;
+&lt;/pre&gt;
+&lt;p&gt;
+The first argument &amp;#8216;resource&amp;#8217; can be one of the following
+forms.
+&lt;/p&gt;
+&lt;ul&gt;
+&lt;li&gt;[&amp;#8216;accesses&amp;#8217;, 520, 340, 804, 602]
+
+&lt;/li&gt;
+&lt;li&gt;[[&amp;#8216;accesses&amp;#8217;, 520, 340, 804, 602], [&amp;#8216;clicks&amp;#8217;, 101,
+76, 239, 321]]
+
+&lt;/li&gt;
+&lt;li&gt;Any other object which has required methods as follows;
+
+&lt;ul&gt;
+&lt;li&gt;each - to supply record objects.
+
+&lt;/li&gt;
+&lt;li&gt;items - If :x option does not exist and your resource object has items
+method, it is called to get :x. You can change the method name by
+:items_method option.
+
+&lt;/li&gt;
+&lt;li&gt;scales - If :y option does not exist and your resource object has scales
+method, it is called to get :y. You can change the method name by
+:scales_method option
+
+&lt;/li&gt;
+&lt;li&gt;max_scale - Would be used as :yMax option if it exists.
+
+&lt;/li&gt;
+&lt;li&gt;min_scale - Would be used as :yMin option if it exists.
+
+&lt;/li&gt;
+&lt;li&gt;The record object shoud have methods as follows.
+
+&lt;ul&gt;
+&lt;li&gt;label - Like &amp;#8216;accesses&amp;#8217; in the example. You can use other
+method if you specify :label_method option.
+
+&lt;/li&gt;
+&lt;li&gt;values - Like [520, 340, 804, 602] in the example. You can use other method
+if you specify :values_method option.
+
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;
+Additionaly, the following options are available.
+&lt;/p&gt;
+&lt;ul&gt;
+&lt;li&gt;:canvas_id - element id of the canvas. Default is &amp;#8216;&lt;a
+href=&quot;Html5jpGraphsHelper.html#M000003&quot;&gt;line_chart&lt;/a&gt;&amp;#8217;. Note that
+all rader charts in one page sould have unique canvas_ids.
+
+&lt;/li&gt;
+&lt;li&gt;:width - The width of the canvas. Default is 400.
+
+&lt;/li&gt;
+&lt;li&gt;:height - The height of the canvas. Default is 300.
+
+&lt;/li&gt;
+&lt;li&gt;All options in &lt;a
+href=&quot;http://www.html5.jp/library/graph_line.html&quot;&gt;www.html5.jp/library/graph_line.html&lt;/a&gt;.
+ex. &amp;#8216;yMax&amp;#8217; or :yMax.
+
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;
+And you can use html_options for the top level div.
+&lt;/p&gt;
+          &lt;p&gt;&lt;a class=&quot;source-toggle&quot; href=&quot;#&quot;
+            onclick=&quot;toggleCode('M000003-source');return false;&quot;&gt;[Source]&lt;/a&gt;&lt;/p&gt;
+          &lt;div class=&quot;method-source-code&quot; id=&quot;M000003-source&quot;&gt;
+&lt;pre&gt;
+    &lt;span class=&quot;ruby-comment cmt&quot;&gt;# File lib/html5jp_graphs_helper.rb, line 86&lt;/span&gt;
+86:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;line_chart&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {}, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt; = {})
+87:     &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {&lt;span class=&quot;ruby-identifier&quot;&gt;:width&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;400&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:height&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;300&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:canvas_id&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;'line_chart'&lt;/span&gt;}.&lt;span class=&quot;ruby-identifier&quot;&gt;merge&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;.&lt;span class=&quot;ruby-identifier&quot;&gt;symbolize_keys&lt;/span&gt;)
+88:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; = &lt;span class=&quot;ruby-identifier&quot;&gt;canvas&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt;)
+89:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;&amp;quot;\n&amp;quot;&lt;/span&gt;
+90:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;line_chart_js&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;)
+91:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;end&lt;/span&gt;
+&lt;/pre&gt;
+          &lt;/div&gt;
+        &lt;/div&gt;
+      &lt;/div&gt;
+
+      &lt;div id=&quot;method-M000004&quot; class=&quot;method-detail&quot;&gt;
+        &lt;a name=&quot;M000004&quot;&gt;&lt;/a&gt;
+
+        &lt;div class=&quot;method-heading&quot;&gt;
+          &lt;a href=&quot;#M000004&quot; class=&quot;method-signature&quot;&gt;
           &lt;span class=&quot;method-name&quot;&gt;pie_chart&lt;/span&gt;&lt;span class=&quot;method-args&quot;&gt;(resource, options = {}, html_options = {})&lt;/span&gt;
           &lt;/a&gt;
         &lt;/div&gt;
@@ -168,9 +280,9 @@ you specify :color_method option. This is optional.
 Additionaly, the following options are available.
 &lt;/p&gt;
 &lt;ul&gt;
-&lt;li&gt;:canvas_id - element id of the canvas. Default is
-&amp;#8216;rader_chart&amp;#8217;. Note that all rader charts in one page sould
-have unique canvas_ids.
+&lt;li&gt;:canvas_id - element id of the canvas. Default is &amp;#8216;&lt;a
+href=&quot;Html5jpGraphsHelper.html#M000004&quot;&gt;pie_chart&lt;/a&gt;&amp;#8217;. Note that all
+rader charts in one page sould have unique canvas_ids.
 
 &lt;/li&gt;
 &lt;li&gt;:width - The width of the canvas. Default is 400.
@@ -192,16 +304,16 @@ ex. &amp;#8216;startAngle&amp;#8217; or :startAngle.
 And you can use html_options for the top level div.
 &lt;/p&gt;
           &lt;p&gt;&lt;a class=&quot;source-toggle&quot; href=&quot;#&quot;
-            onclick=&quot;toggleCode('M000001-source');return false;&quot;&gt;[Source]&lt;/a&gt;&lt;/p&gt;
-          &lt;div class=&quot;method-source-code&quot; id=&quot;M000001-source&quot;&gt;
+            onclick=&quot;toggleCode('M000004-source');return false;&quot;&gt;[Source]&lt;/a&gt;&lt;/p&gt;
+          &lt;div class=&quot;method-source-code&quot; id=&quot;M000004-source&quot;&gt;
 &lt;pre&gt;
-    &lt;span class=&quot;ruby-comment cmt&quot;&gt;# File lib/html5jp_graphs_helper.rb, line 25&lt;/span&gt;
-25:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;pie_chart&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {}, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt; = {})
-26:     &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {&lt;span class=&quot;ruby-identifier&quot;&gt;:width&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;400&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:height&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;300&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:canvas_id&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;'pie_chart'&lt;/span&gt;}.&lt;span class=&quot;ruby-identifier&quot;&gt;merge&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;.&lt;span class=&quot;ruby-identifier&quot;&gt;symbolize_keys&lt;/span&gt;)
-27:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; = &lt;span class=&quot;ruby-identifier&quot;&gt;canvas&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt;)
-28:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;&amp;quot;\n&amp;quot;&lt;/span&gt;
-29:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;pie_chart_js&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;)
-30:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;end&lt;/span&gt;
+     &lt;span class=&quot;ruby-comment cmt&quot;&gt;# File lib/html5jp_graphs_helper.rb, line 113&lt;/span&gt;
+113:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;pie_chart&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {}, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt; = {})
+114:     &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {&lt;span class=&quot;ruby-identifier&quot;&gt;:width&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;400&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:height&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;300&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:canvas_id&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;'pie_chart'&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:sort&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-keyword kw&quot;&gt;false&lt;/span&gt;}.&lt;span class=&quot;ruby-identifier&quot;&gt;merge&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;.&lt;span class=&quot;ruby-identifier&quot;&gt;symbolize_keys&lt;/span&gt;)
+115:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; = &lt;span class=&quot;ruby-identifier&quot;&gt;canvas&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt;)
+116:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;&amp;quot;\n&amp;quot;&lt;/span&gt;
+117:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;pie_chart_js&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;)
+118:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;end&lt;/span&gt;
 &lt;/pre&gt;
           &lt;/div&gt;
         &lt;/div&gt;
@@ -263,7 +375,7 @@ specify :values_method option.
 &lt;/li&gt;
 &lt;li&gt;color - If :faceColors option does not exist and your record object has
 color method, it is used for :faceColors. You can change the method name by
-:colors_method option.
+:color_method option.
 
 &lt;/li&gt;
 &lt;/ul&gt;
@@ -299,13 +411,125 @@ And you can use html_options for the top level div.
             onclick=&quot;toggleCode('M000002-source');return false;&quot;&gt;[Source]&lt;/a&gt;&lt;/p&gt;
           &lt;div class=&quot;method-source-code&quot; id=&quot;M000002-source&quot;&gt;
 &lt;pre&gt;
-    &lt;span class=&quot;ruby-comment cmt&quot;&gt;# File lib/html5jp_graphs_helper.rb, line 53&lt;/span&gt;
-53:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;radar_chart&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {}, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt; = {})
-54:     &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {&lt;span class=&quot;ruby-identifier&quot;&gt;:width&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;400&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:height&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;300&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:canvas_id&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;'reader_chart'&lt;/span&gt;}.&lt;span class=&quot;ruby-identifier&quot;&gt;merge&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;.&lt;span class=&quot;ruby-identifier&quot;&gt;symbolize_keys&lt;/span&gt;)
-55:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; = &lt;span class=&quot;ruby-identifier&quot;&gt;canvas&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt;)
-56:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;&amp;quot;\n&amp;quot;&lt;/span&gt;
-57:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;rader_chart_js&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;)
-58:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;end&lt;/span&gt;
+    &lt;span class=&quot;ruby-comment cmt&quot;&gt;# File lib/html5jp_graphs_helper.rb, line 56&lt;/span&gt;
+56:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;radar_chart&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {}, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt; = {})
+57:     &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {&lt;span class=&quot;ruby-identifier&quot;&gt;:width&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;400&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:height&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;300&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:canvas_id&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;'reader_chart'&lt;/span&gt;}.&lt;span class=&quot;ruby-identifier&quot;&gt;merge&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;.&lt;span class=&quot;ruby-identifier&quot;&gt;symbolize_keys&lt;/span&gt;)
+58:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; = &lt;span class=&quot;ruby-identifier&quot;&gt;canvas&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt;)
+59:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;&amp;quot;\n&amp;quot;&lt;/span&gt;
+60:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;rader_chart_js&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;)
+61:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;end&lt;/span&gt;
+&lt;/pre&gt;
+          &lt;/div&gt;
+        &lt;/div&gt;
+      &lt;/div&gt;
+
+      &lt;div id=&quot;method-M000001&quot; class=&quot;method-detail&quot;&gt;
+        &lt;a name=&quot;M000001&quot;&gt;&lt;/a&gt;
+
+        &lt;div class=&quot;method-heading&quot;&gt;
+          &lt;a href=&quot;#M000001&quot; class=&quot;method-signature&quot;&gt;
+          &lt;span class=&quot;method-name&quot;&gt;vertical_bar_chart&lt;/span&gt;&lt;span class=&quot;method-args&quot;&gt;(resource, options = {}, html_options = {})&lt;/span&gt;
+          &lt;/a&gt;
+        &lt;/div&gt;
+      
+        &lt;div class=&quot;method-description&quot;&gt;
+          &lt;p&gt;
+Draw a vertical bar chart using Html5jp vertical bar chart (&lt;a
+href=&quot;http://www.html5.jp/library/graph_vbar.html&quot;&gt;www.html5.jp/library/graph_vbar.html&lt;/a&gt;).
+&lt;/p&gt;
+&lt;p&gt;
+ex.
+&lt;/p&gt;
+&lt;pre&gt;
+  &amp;lt;%= vertical_bar_chart [['accesses', 520, 340, 804, 602], ['clicks', 101, 76, 239, 321]] %&amp;gt;
+&lt;/pre&gt;
+&lt;p&gt;
+The first argument &amp;#8216;resource&amp;#8217; can be one of the following
+forms.
+&lt;/p&gt;
+&lt;ul&gt;
+&lt;li&gt;[&amp;#8216;accesses&amp;#8217;, 520, 340, 804, 602]
+
+&lt;/li&gt;
+&lt;li&gt;[[&amp;#8216;accesses&amp;#8217;, 520, 340, 804, 602], [&amp;#8216;clicks&amp;#8217;, 101,
+76, 239, 321]]
+
+&lt;/li&gt;
+&lt;li&gt;Any other object which has required methods as follows;
+
+&lt;ul&gt;
+&lt;li&gt;each - to supply record objects.
+
+&lt;/li&gt;
+&lt;li&gt;items - If :x option does not exist and your resource object has items
+method, it is called to get :x. You can change the method name by
+:items_method option.
+
+&lt;/li&gt;
+&lt;li&gt;scales - If :y option does not exist and your resource object has scales
+method, it is called to get :y. You can change the method name by
+:scales_method option
+
+&lt;/li&gt;
+&lt;li&gt;max_scale - Would be used as :yMax option if it exists.
+
+&lt;/li&gt;
+&lt;li&gt;The record object shoud have methods as follows.
+
+&lt;ul&gt;
+&lt;li&gt;label - Like &amp;#8216;accesses&amp;#8217; in the example. You can use other
+method if you specify :label_method option.
+
+&lt;/li&gt;
+&lt;li&gt;values - Like [520, 340, 804, 602] in the example. You can use other method
+if you specify :values_method option.
+
+&lt;/li&gt;
+&lt;li&gt;color - If :barColors option does not exist and your record object has
+color method, it is used for :barColors. You can change the method name by
+:color_method option.
+
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;
+Additionaly, the following options are available.
+&lt;/p&gt;
+&lt;ul&gt;
+&lt;li&gt;:canvas_id - element id of the canvas. Default is &amp;#8216;&lt;a
+href=&quot;Html5jpGraphsHelper.html#M000003&quot;&gt;line_chart&lt;/a&gt;&amp;#8217;. Note that
+all rader charts in one page sould have unique canvas_ids.
+
+&lt;/li&gt;
+&lt;li&gt;:width - The width of the canvas. Default is 400.
+
+&lt;/li&gt;
+&lt;li&gt;:height - The height of the canvas. Default is 300.
+
+&lt;/li&gt;
+&lt;li&gt;All options in &lt;a
+href=&quot;http://www.html5.jp/library/graph_vbar.html&quot;&gt;www.html5.jp/library/graph_vbar.html&lt;/a&gt;.
+ex. &amp;#8216;backgroundColor&amp;#8217; or :backgroundColor.
+
+&lt;/li&gt;
+&lt;/ul&gt;
+&lt;p&gt;
+And you can use html_options for the top level div.
+&lt;/p&gt;
+          &lt;p&gt;&lt;a class=&quot;source-toggle&quot; href=&quot;#&quot;
+            onclick=&quot;toggleCode('M000001-source');return false;&quot;&gt;[Source]&lt;/a&gt;&lt;/p&gt;
+          &lt;div class=&quot;method-source-code&quot; id=&quot;M000001-source&quot;&gt;
+&lt;pre&gt;
+    &lt;span class=&quot;ruby-comment cmt&quot;&gt;# File lib/html5jp_graphs_helper.rb, line 27&lt;/span&gt;
+27:  &lt;span class=&quot;ruby-keyword kw&quot;&gt;def&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;vertical_bar_chart&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {}, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt; = {})
+28:     &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt; = {&lt;span class=&quot;ruby-identifier&quot;&gt;:width&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;400&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:height&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value&quot;&gt;300&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;:canvas_id&lt;/span&gt; =&lt;span class=&quot;ruby-operator&quot;&gt;&amp;gt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;'vertical_bar_chart'&lt;/span&gt;}.&lt;span class=&quot;ruby-identifier&quot;&gt;merge&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;.&lt;span class=&quot;ruby-identifier&quot;&gt;symbolize_keys&lt;/span&gt;)
+29:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; = &lt;span class=&quot;ruby-identifier&quot;&gt;canvas&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;html_options&lt;/span&gt;)
+30:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-value str&quot;&gt;&amp;quot;\n&amp;quot;&lt;/span&gt;
+31:     &lt;span class=&quot;ruby-identifier&quot;&gt;output&lt;/span&gt; &lt;span class=&quot;ruby-operator&quot;&gt;&amp;lt;&amp;lt;&lt;/span&gt; &lt;span class=&quot;ruby-identifier&quot;&gt;vertical_bar_chart_js&lt;/span&gt;(&lt;span class=&quot;ruby-identifier&quot;&gt;resource&lt;/span&gt;, &lt;span class=&quot;ruby-identifier&quot;&gt;options&lt;/span&gt;)
+32:   &lt;span class=&quot;ruby-keyword kw&quot;&gt;end&lt;/span&gt;
 &lt;/pre&gt;
           &lt;/div&gt;
         &lt;/div&gt;</diff>
      <filename>rdoc/classes/Html5jpGraphsHelper.html</filename>
    </modified>
    <modified>
      <diff>@@ -1 +1 @@
-Mon, 16 Jun 2008 17:14:58 +0900
+Mon, 23 Jun 2008 18:14:11 +0900</diff>
      <filename>rdoc/created.rid</filename>
    </modified>
    <modified>
      <diff>@@ -56,7 +56,7 @@
     &lt;/tr&gt;
     &lt;tr class=&quot;top-aligned-row&quot;&gt;
       &lt;td&gt;&lt;strong&gt;Last Update:&lt;/strong&gt;&lt;/td&gt;
-      &lt;td&gt;Mon Jun 16 17:14:43 +0900 2008&lt;/td&gt;
+      &lt;td&gt;Mon Jun 23 12:36:07 +0900 2008&lt;/td&gt;
     &lt;/tr&gt;
     &lt;/table&gt;
   &lt;/div&gt;</diff>
      <filename>rdoc/files/lib/html5jp_graphs_helper_rb.html</filename>
    </modified>
    <modified>
      <diff>@@ -20,7 +20,7 @@
 &lt;div id=&quot;index&quot;&gt;
   &lt;h1 class=&quot;section-bar&quot;&gt;Files&lt;/h1&gt;
   &lt;div id=&quot;index-entries&quot;&gt;
-    &lt;a href=&quot;files/README.html&quot;&gt;README&lt;/a&gt;&lt;br /&gt;
+    &lt;a href=&quot;files/README_rdoc.html&quot;&gt;README.rdoc&lt;/a&gt;&lt;br /&gt;
     &lt;a href=&quot;files/lib/html5jp_graphs_helper_rb.html&quot;&gt;lib/html5jp_graphs_helper.rb&lt;/a&gt;&lt;br /&gt;
   &lt;/div&gt;
 &lt;/div&gt;</diff>
      <filename>rdoc/fr_file_index.html</filename>
    </modified>
    <modified>
      <diff>@@ -20,8 +20,10 @@
 &lt;div id=&quot;index&quot;&gt;
   &lt;h1 class=&quot;section-bar&quot;&gt;Methods&lt;/h1&gt;
   &lt;div id=&quot;index-entries&quot;&gt;
-    &lt;a href=&quot;classes/Html5jpGraphsHelper.html#M000001&quot;&gt;pie_chart (Html5jpGraphsHelper)&lt;/a&gt;&lt;br /&gt;
+    &lt;a href=&quot;classes/Html5jpGraphsHelper.html#M000003&quot;&gt;line_chart (Html5jpGraphsHelper)&lt;/a&gt;&lt;br /&gt;
+    &lt;a href=&quot;classes/Html5jpGraphsHelper.html#M000004&quot;&gt;pie_chart (Html5jpGraphsHelper)&lt;/a&gt;&lt;br /&gt;
     &lt;a href=&quot;classes/Html5jpGraphsHelper.html#M000002&quot;&gt;radar_chart (Html5jpGraphsHelper)&lt;/a&gt;&lt;br /&gt;
+    &lt;a href=&quot;classes/Html5jpGraphsHelper.html#M000001&quot;&gt;vertical_bar_chart (Html5jpGraphsHelper)&lt;/a&gt;&lt;br /&gt;
   &lt;/div&gt;
 &lt;/div&gt;
 &lt;/body&gt;</diff>
      <filename>rdoc/fr_method_index.html</filename>
    </modified>
    <modified>
      <diff>@@ -19,6 +19,6 @@
         &lt;frame src=&quot;fr_class_index.html&quot;  name=&quot;Classes&quot; /&gt;
         &lt;frame src=&quot;fr_method_index.html&quot; name=&quot;Methods&quot; /&gt;
     &lt;/frameset&gt;
-    &lt;frame src=&quot;files/README.html&quot; name=&quot;docwin&quot; /&gt;
+    &lt;frame src=&quot;files/README_rdoc.html&quot; name=&quot;docwin&quot; /&gt;
 &lt;/frameset&gt;
 &lt;/html&gt;
\ No newline at end of file</diff>
      <filename>rdoc/index.html</filename>
    </modified>
  </modified>
  <removed type="array">
    <removed>
      <filename>rdoc/files/README.html</filename>
    </removed>
  </removed>
  <parents type="array">
    <parent>
      <id>28fcbb44229b862686dbf097938840d9b179be53</id>
    </parent>
  </parents>
  <author>
    <name>Yasuko Ohba</name>
    <email>y.ohba@everyleaf.com</email>
  </author>
  <url>http://github.com/nay/html5jp_graphs/commit/ca2f18c469c4fb6960ffe5754245b8e89443bc4f</url>
  <id>ca2f18c469c4fb6960ffe5754245b8e89443bc4f</id>
  <committed-date>2008-06-23T02:15:15-07:00</committed-date>
  <authored-date>2008-06-23T02:15:15-07:00</authored-date>
  <message>Updated rdoc</message>
  <tree>f44176c350465fe9a7b6c3d0ec81aa598e6795b9</tree>
  <committer>
    <name>Yasuko Ohba</name>
    <email>y.ohba@everyleaf.com</email>
  </committer>
</commit>
