<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -192,7 +192,7 @@ A Google-o-meter has a few restrictions. It may only use a solid filled backgrou
 === try yourself
 
 Gchart.bar( :data =&gt; [[1,2,4,67,100,41,234],[45,23,67,12,67,300, 250]], 
-            :title =&gt; 'SDRuby Fu level', 
+            :title =&gt; 'SD Ruby Fu level', 
             :legend =&gt; ['matt','patrick'], 
             :bg =&gt; {:color =&gt; '76A4FB', :type =&gt; 'gradient'}, 
             :bar_colors =&gt; 'ff0000,00ff00')</diff>
      <filename>README.markdown</filename>
    </modified>
    <modified>
      <diff>@@ -47,6 +47,9 @@ class Gchart
       @grouped = false
       @encoding = 'simple'
       @max_value = 'auto'
+      @alt = 'Google Chart'
+      @id = false
+      @class = false
 
       # set the options value if definable
       options.each do |attribute, value| 
@@ -68,6 +71,33 @@ class Gchart
     &quot;#{@width}x#{@height}&quot;
   end
   
+  # Sets the alt tag when chart is exported as image tag
+  def alt=(alt='Google Chart')
+    @alt = alt
+  end
+  
+  def alt
+    @alt
+  end
+  
+  # Sets the CSS id selector when chart is exported as image tag
+  def id=(id=false)
+    @id = id
+  end
+  
+  def id
+    @id
+  end
+  
+  # Sets the CSS class selector when chart is exported as image tag
+  def class=(klass=false)
+    @class = klass
+  end
+  
+  def class
+    @class
+  end
+  
   # Sets the orientation of a bar graph
   def orientation=(orientation='h')
     if orientation == 'h' || orientation == 'horizontal'
@@ -123,10 +153,20 @@ class Gchart
   
   # Format
   
-  def img_tag
-    &quot;&lt;img src='#{query_builder}'/&gt;&quot;
+  def image_tag
+    image = &quot;&lt;img&quot;
+    image += &quot; id=\&quot;#{@id}\&quot;&quot; if @id  
+    image += &quot; class=\&quot;#{@class}\&quot;&quot; if @class      
+    image += &quot; src=\&quot;#{query_builder}\&quot;&quot;
+    image += &quot; width=\&quot;#{@width}\&quot;&quot;
+    image += &quot; height=\&quot;#{@height}\&quot;&quot;
+    image += &quot; alt=\&quot;#{@alt}\&quot;&quot;
+    image += &quot; title=\&quot;#{@title}\&quot;&quot; if @title
+    image += &quot; /&gt;&quot;
   end
   
+  alias_method :img_tag, :image_tag
+  
   def url
     query_builder
   end</diff>
      <filename>lib/gchart.rb</filename>
    </modified>
    <modified>
      <diff>@@ -377,10 +377,34 @@ describe 'exporting a chart' do
     Gchart.line(:data =&gt; [0, 26], :format =&gt; 'url').should == Gchart.line(:data =&gt; [0, 26])
   end
   
-  it &quot;should be available as the img tag&quot; do
-    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'img_tag').should match(/&lt;img src=(.*)\/&gt;/)
+  it &quot;should be available as an image tag&quot; do
+    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag').should match(/&lt;img src=(.*) width=&quot;300&quot; height=&quot;200&quot; alt=&quot;Google Chart&quot; \/&gt;/)
   end
   
+  it &quot;should be available as an image tag using img_tag alias&quot; do
+    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'img_tag').should match(/&lt;img src=(.*) width=&quot;300&quot; height=&quot;200&quot; alt=&quot;Google Chart&quot; \/&gt;/)
+  end
+  
+  it &quot;should be available as an image tag using custom dimensions&quot; do
+    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :size =&gt; '400x400').should match(/&lt;img src=(.*) width=&quot;400&quot; height=&quot;400&quot; alt=&quot;Google Chart&quot; \/&gt;/)
+  end
+ 
+  it &quot;should be available as an image tag using custom alt text&quot; do
+    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :alt =&gt; 'Sexy chart').should match(/&lt;img src=(.*) width=&quot;300&quot; height=&quot;200&quot; alt=&quot;Sexy chart&quot; \/&gt;/)
+  end
+  
+  it &quot;should be available as an image tag using custom title text&quot; do
+    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :title =&gt; 'Sexy chart').should match(/&lt;img src=(.*) width=&quot;300&quot; height=&quot;200&quot; alt=&quot;Google Chart&quot; title=&quot;Sexy chart&quot; \/&gt;/)
+  end
+  
+  it &quot;should be available as an image tag using custom css id selector&quot; do
+    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :id =&gt; 'chart').should match(/&lt;img id=&quot;chart&quot; src=(.*) width=&quot;300&quot; height=&quot;200&quot; alt=&quot;Google Chart&quot; \/&gt;/)
+  end
+  
+  it &quot;should be available as an image tag using custom css class selector&quot; do
+    Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :class =&gt; 'chart').should match(/&lt;img class=&quot;chart&quot; src=(.*) width=&quot;300&quot; height=&quot;200&quot; alt=&quot;Google Chart&quot; \/&gt;/)
+  end
+   
   it &quot;should be available as a file&quot; do
     File.delete('chart.png') if File.exist?('chart.png')
     Gchart.line(:data =&gt; [0, 26], :format =&gt; 'file')</diff>
      <filename>spec/gchart_spec.rb</filename>
    </modified>
    <modified>
      <diff>@@ -41,7 +41,7 @@
 	&lt;h2&gt;What&lt;/h2&gt;
 
 
-	&lt;pre&gt;&lt;code&gt;A nice and simple wrapper for &lt;a href=&quot;http://code.google.com/apis/chart/&quot;&gt;Google Chart API&lt;/a&gt;&lt;/code&gt;&lt;/pre&gt;
+	&lt;p&gt;A nice and simple wrapper for &lt;a href=&quot;http://code.google.com/apis/chart/&quot;&gt;Google Chart &lt;span class=&quot;caps&quot;&gt;API&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;
 
 
 	&lt;h2&gt;Installing&lt;/h2&gt;
@@ -108,11 +108,12 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 &lt;pre class='syntax'&gt;&lt;span class=&quot;ident&quot;&gt;require&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
 
 
-	&lt;p&gt;&lt;pre class='syntax'&gt;&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;  &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;200x300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;example title&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:bg&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;efefef&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:legend&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;first data set label&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;second data set label&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'],&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;120&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;72&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
+	&lt;p&gt;&lt;pre class='syntax'&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;200x300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; 
+            &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;example title&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:bg&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;efefef&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:legend&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;first data set label&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;second data set label&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'],&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;120&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;72&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;&lt;/pre&gt;&lt;/p&gt;
 
 
 &lt;hr /&gt;
@@ -120,7 +121,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 	&lt;p&gt;&lt;strong&gt;simple line chart&lt;/strong&gt;
 &lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -135,7 +136,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 	&lt;p&gt;&lt;strong&gt;multiple line charts&lt;/strong&gt;
 &lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;41&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;41&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -146,7 +147,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;41&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:line_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;41&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;50&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:line_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -160,8 +161,8 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;ident&quot;&gt;data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;36&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;39&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;28&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;28&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;29&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;35&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;33&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;34&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;36&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;37&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;33&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;33&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;37&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;37&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;39&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;sparkline&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;120x40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:line_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;0077CC&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;ident&quot;&gt;data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;36&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;39&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;28&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;28&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;31&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;29&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;27&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;35&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;33&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;34&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;36&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;37&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;33&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;33&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;37&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;37&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;39&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;sparkline&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;120x40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:line_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;0077CC&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -175,7 +176,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;
 &lt;img src=&quot;http://chart.apis.google.com/chart?cht=bvs&amp;#38;chs=300x200&amp;#38;chd=s:9UGo&quot; title=&quot;bars&quot; alt=&quot;bars&quot; /&gt;&lt;/p&gt;
 
@@ -184,7 +185,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:orientation&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;horizontal&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:orientation&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;horizontal&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;
 &lt;img src=&quot;http://chart.apis.google.com/chart?cht=bhs&amp;#38;chs=300x200&amp;#38;chd=s:9UGo&quot; title=&quot;bars&quot; alt=&quot;bars&quot; /&gt;&lt;/p&gt;
 
@@ -193,7 +194,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -204,7 +205,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -212,7 +213,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -223,9 +224,9 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:stacked&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; 
+           &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:stacked&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -242,10 +243,10 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;25,6&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;25,6,12&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6, group spacing of 12&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;25,6&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;25,6,12&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6, group spacing of 12&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;6&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25, spacing of 6&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;25&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;comment&quot;&gt;# width of 25&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -253,8 +254,8 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:width&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;19&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;})&lt;/span&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:group_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;12&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;})&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:width&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;19&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;})&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;attribute&quot;&gt;@data&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:bar_width_and_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:group_spacing&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;12&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;})&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -262,7 +263,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pie&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;35&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pie&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;35&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;
 &lt;img src=&quot;http://chart.apis.google.com/chart?cht=p&amp;#38;chs=300x200&amp;#38;chd=s:bv9&quot; title=&quot;Pie Chart&quot; alt=&quot;Pie Chart&quot; /&gt;&lt;/p&gt;
 
@@ -271,7 +272,7 @@ If you never added &lt;a href=&quot;http://github.com&quot;&gt;GitHub&lt;/a&gt; as a gem source, you w
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pie_3d&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;35&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pie_3d&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;35&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;
 &lt;img src=&quot;http://chart.apis.google.com/chart?cht=p3&amp;#38;chs=300x200&amp;#38;chd=s:bv9&quot; title=&quot;Pie Chart&quot; alt=&quot;Pie Chart&quot; /&gt;&lt;/p&gt;
 
@@ -293,7 +294,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;venn&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;60&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;venn&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;60&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;
 &lt;img src=&quot;http://chart.apis.google.com/chart?cht=v&amp;#38;chs=300x200&amp;#38;chd=s:9wkSSSG&quot; title=&quot;Venn&quot; alt=&quot;Venn&quot; /&gt;&lt;/p&gt;
 
@@ -308,7 +309,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;scatter&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;4&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;scatter&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;4&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;5&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;4&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;3&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;2&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;1&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -325,7 +326,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
- &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;meter&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:label&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Flavor&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;meter&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;70&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:label&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Flavor&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -336,7 +337,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -347,7 +348,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title_size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title_size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -358,7 +359,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title_color&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title_color&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -369,9 +370,9 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;600x400&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Recent Chart Sexyness&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
+           &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;600x400&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -382,9 +383,9 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF9994&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
+           &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF9994&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -395,9 +396,9 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF9994&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:chart_background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;000000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
+           &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF9994&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:chart_background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;000000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -408,10 +409,10 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;76A4FB&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;EEEEEE&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:chart_background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;CCCCCC&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
+           &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;76A4FB&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;EEEEEE&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:chart_background&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;CCCCCC&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -419,9 +420,9 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:line_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;76A4FB&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; 
+            &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;15&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;40&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;90&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;80&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:line_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;76A4FB&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -432,28 +433,28 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt vs Rob&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:stacked&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;400x200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:legend&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Rob's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;bar&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt vs Rob&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; 
+           &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000,00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:stacked&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;400x200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+           &lt;span class=&quot;symbol&quot;&gt;:legend&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Rob's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;
 &lt;img src=&quot;http://chart.apis.google.com/chart?cht=bvg&amp;#38;chdl=Matt's+Mojo|Rob's+Mojo&amp;#38;chs=400x200&amp;#38;chd=s:9UGo,Uo9C&amp;#38;chco=FF0000,00FF00&amp;#38;chtt=Matt+vs+Rob&quot; title=&quot;legend&quot; alt=&quot;legend&quot; /&gt;&lt;/p&gt;
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt vs Rob&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; 
-              &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'],&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:stacked&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;400x200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-              &lt;span class=&quot;symbol&quot;&gt;:legend&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Rob's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt vs Rob&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]],&lt;/span&gt; 
+            &lt;span class=&quot;symbol&quot;&gt;:bar_colors&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;FF0000&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;00FF00&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'],&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:stacked&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;400x200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:legend&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Rob's Mojo&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;
 &lt;img src=&quot;http://chart.apis.google.com/chart?cht=lc&amp;#38;chdl=Matt's+Mojo|Rob's+Mojo&amp;#38;chs=400x200&amp;#38;chd=s:9UGo,Uo9C&amp;#38;chco=FF0000,00FF00&amp;#38;chtt=Matt+vs+Rob&quot; title=&quot;line legend&quot; alt=&quot;line legend&quot; /&gt;&lt;/p&gt;
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pie_3d&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;  &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;ruby_fu&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;400x200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-                  &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;DHH&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Rob&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;pie_3d&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;ruby_fu&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:size&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;400x200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+              &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;45&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;DHH&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Rob&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;,&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Matt&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -464,7 +465,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x,y,r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x,y,r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -472,7 +473,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;y&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -480,8 +481,8 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;  &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-                &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan|July|Jan|July|Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan|July|Jan|July|Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -489,8 +490,8 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;  &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-                &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -501,8 +502,8 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;  &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x,r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-                &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan|July|Jan|July|Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2005|2006|2007&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x,r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan|July|Jan|July|Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2005|2006|2007&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -510,8 +511,8 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;  &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x,r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
-                &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2005&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2006&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2007&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;']])&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:axis_with_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;x,r&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt;
+            &lt;span class=&quot;symbol&quot;&gt;:axis_labels&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;July&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Jan&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'],&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;['&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2005&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2006&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;','&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;2007&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;']])&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -528,7 +529,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:custom&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;chd=s:93zyvneTTOMJMLIJFHEAECFJGHDBFCFIERcgnpy45879,IJKNUWUWYdnswz047977315533zy1246872tnkgcaZQONHCECAAAAEII&amp;amp;chls=3,6,3|1,1,0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:custom&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;chd=s:93zyvneTTOMJMLIJFHEAECFJGHDBFCFIERcgnpy45879,IJKNUWUWYdnswz047977315533zy1246872tnkgcaZQONHCECAAAAEII&amp;amp;chls=3,6,3|1,1,0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -545,7 +546,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -553,22 +554,39 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:filename&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;custom_filename.png&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;file&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:filename&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;custom_filename.png&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
 	&lt;p&gt;&lt;strong&gt;Insert as an image tag&lt;/strong&gt;&lt;/p&gt;
 
 
-	&lt;p&gt;Because, I&amp;#8217;m lazy, I also added a custom format:&lt;/p&gt;
+	&lt;p&gt;Because, I&amp;#8217;m lazy, you can generate a full image tag, with support for the standard html options.&lt;/p&gt;
+
+
+	&lt;p&gt;&lt;pre class='syntax'&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;image_tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;/pre&gt;&lt;/p&gt;
+
+
+	&lt;p&gt;&lt;pre class='syntax'&gt;
+&lt;span class=&quot;punct&quot;&gt;&amp;lt;&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;img&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;src&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;=&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;http://chart.apis.google.com/chart?chs=300x200&amp;amp;chd=s:A9&amp;amp;cht=lc&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;width&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;=&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;height&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;=&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;ident&quot;&gt;alt&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;=&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Google Chart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;/&amp;gt;&lt;/span&gt;
+&lt;/pre&gt;&lt;/p&gt;
+
+
+	&lt;p&gt;Here are a few more examples:&lt;/p&gt;
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;img_tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;image_tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;')&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;image_tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:id&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;sexy&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;image_tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:class&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;chart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;image_tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:alt&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Sexy Chart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;0&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;26&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:format&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;image_tag&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;',&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:title&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;&amp;quot;&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;Sexy Chart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;&amp;quot;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
-	&lt;p&gt;&amp;lt;img src=&amp;#8217;http://chart.apis.google.com/chart?chs=300&amp;#215;200&amp;#38;chd=s:A9&amp;#38;cht=lc&amp;#8217;/&amp;gt;&lt;/p&gt;
+	&lt;p&gt;Image dimensions will be automatically set based on your chart&amp;#8217;s size.&lt;/p&gt;
 
 
 &lt;hr /&gt;
@@ -592,19 +610,19 @@ Data set:
 
 	&lt;p&gt;default / simple: chd=s:9UGoUo9C
 &lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
 	&lt;p&gt;extended: chd=e:..VVGZqqVVqq..CI
 &lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:encoding&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;extended&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:encoding&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;extended&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
 	&lt;p&gt;text: chd=t:300,100,30,200,100,200,300,10
 &lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:encoding&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:encoding&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt;&lt;span class=&quot;string&quot;&gt;text&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;'&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -621,7 +639,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;]&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -629,7 +647,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:max_value&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;500&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;200&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;300&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:max_value&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;500&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -637,7 +655,7 @@ Data set:
 
 
 	&lt;p&gt;&lt;pre class='syntax'&gt;
-  &lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;14&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:max_value&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
+&lt;span class=&quot;constant&quot;&gt;Gchart&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;ident&quot;&gt;line&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;symbol&quot;&gt;:data&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;[&lt;/span&gt;&lt;span class=&quot;number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;20&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;14&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;30&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;number&quot;&gt;10&lt;/span&gt;&lt;span class=&quot;punct&quot;&gt;],&lt;/span&gt; &lt;span class=&quot;symbol&quot;&gt;:max_value&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;=&amp;gt;&lt;/span&gt; &lt;span class=&quot;constant&quot;&gt;false&lt;/span&gt; &lt;span class=&quot;punct&quot;&gt;)&lt;/span&gt;
 &lt;/pre&gt;&lt;/p&gt;
 
 
@@ -666,9 +684,10 @@ Data set:
 
 
 	&lt;p&gt;&lt;a href=&quot;http://github.com/dbgrandi&quot;&gt;David Grandinetti&lt;/a&gt;
-&lt;a href=&quot;http://github.com/takeo&quot;&gt;Toby Sterrett&lt;/a&gt;&lt;/p&gt;
+&lt;a href=&quot;http://github.com/takeo&quot;&gt;Toby Sterrett&lt;/a&gt;
+&lt;a href=&quot;http://github.com/mokolabs&quot;&gt;Patrick Crowley&lt;/a&gt;&lt;/p&gt;
     &lt;p class=&quot;coda&quot;&gt;
-      &lt;a href=&quot;mattaimonetti@gmail.com&quot;&gt;Matt Aimonetti&lt;/a&gt;, 17th June 2008&lt;br&gt;
+      &lt;a href=&quot;mattaimonetti@gmail.com&quot;&gt;Matt Aimonetti&lt;/a&gt;, 26th June 2008&lt;br&gt;
       Theme extended from &lt;a href=&quot;http://rb2js.rubyforge.org/&quot;&gt;Paul Battley&lt;/a&gt;
     &lt;/p&gt;
 &lt;/div&gt;</diff>
      <filename>website/index.html</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@ h2. &amp;#x2192; 'Sexy Charts using Google API &amp; Ruby'
 
 h2. What
   
-  A nice and simple wrapper for &quot;Google Chart API&quot;:http://code.google.com/apis/chart/
+A nice and simple wrapper for &quot;Google Chart API&quot;:http://code.google.com/apis/chart/
 
 h2. Installing
 
@@ -52,17 +52,18 @@ or use rubyforge:
 require:
 &lt;pre syntax=&quot;ruby&quot;&gt;require 'gchart'&lt;/pre&gt;
 
-&lt;pre syntax=&quot;ruby&quot;&gt;Gchart.line(  :size =&gt; '200x300', 
-              :title =&gt; &quot;example title&quot;,
-              :bg =&gt; 'efefef',
-              :legend =&gt; ['first data set label', 'second data set label'],
-              :data =&gt; [10, 30, 120, 45, 72])&lt;/pre&gt;
+&lt;pre syntax=&quot;ruby&quot;&gt;
+Gchart.line(:size =&gt; '200x300', 
+            :title =&gt; &quot;example title&quot;,
+            :bg =&gt; 'efefef',
+            :legend =&gt; ['first data set label', 'second data set label'],
+            :data =&gt; [10, 30, 120, 45, 72])&lt;/pre&gt;
 
 ---
 
 *simple line chart*
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(:data =&gt; [0, 40, 10, 70, 20])
+Gchart.line(:data =&gt; [0, 40, 10, 70, 20])
 &lt;/pre&gt;
 
 Generate the following url: http://chart.apis.google.com/chart?chs=300x200&amp;chd=s:AiI9R&amp;cht=lc
@@ -73,7 +74,7 @@ Inserted in an image tag, it will look like that:
 
 *multiple line charts*
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(:data =&gt; [[0, 40, 10, 70, 20],[41, 10, 80, 50]])
+Gchart.line(:data =&gt; [[0, 40, 10, 70, 20],[41, 10, 80, 50]])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:AeH1P,fH9m(multiple lines chart)!
@@ -81,7 +82,7 @@ Inserted in an image tag, it will look like that:
 *set line colors*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(:data =&gt; [[0, 40, 10, 70, 20],[41, 10, 80, 50]], :line_colors =&gt; &quot;FF0000,00FF00&quot;)
+Gchart.line(:data =&gt; [[0, 40, 10, 70, 20],[41, 10, 80, 50]], :line_colors =&gt; &quot;FF0000,00FF00&quot;)
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:AeH1P,fH9m&amp;chco=FF0000,00FF00(line colors)!
@@ -91,8 +92,8 @@ Inserted in an image tag, it will look like that:
 *sparkline chart*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  data = [27,25,25,25,25,27,100,31,25,36,25,25,39,25,31,25,25,25,26,26,25,25,28,25,25,100,28,27,31,25,27,27,29,25,27,26,26,25,26,26,35,33,34,25,26,25,36,25,26,37,33,33,37,37,39,25,25,25,25]
-  Gchart.sparkline(:data =&gt; data, :size =&gt; '120x40', :line_colors =&gt; '0077CC')
+data = [27,25,25,25,25,27,100,31,25,36,25,25,39,25,31,25,25,25,26,26,25,25,28,25,25,100,28,27,31,25,27,27,29,25,27,26,26,25,26,26,35,33,34,25,26,25,36,25,26,37,33,33,37,37,39,25,25,25,25]
+Gchart.sparkline(:data =&gt; data, :size =&gt; '120x40', :line_colors =&gt; '0077CC')
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?chd=s:QPPPPQ9SPVPPXPSPPPPPPPRPP9RQSPQQRPQPPPPPVUUPPPVPPWUUWWXPPPP&amp;chco=0077CC&amp;chs=120x40&amp;cht=ls(sparline)!
@@ -102,21 +103,21 @@ A sparkline chart has exactly the same parameters as a line chart. The only diff
 *bar chart*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:data =&gt; [300, 100, 30, 200])
+Gchart.bar(:data =&gt; [300, 100, 30, 200])
 &lt;/pre&gt;
 !http://chart.apis.google.com/chart?cht=bvs&amp;chs=300x200&amp;chd=s:9UGo(bars)!
 
 *set the bar chart orientation*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:data =&gt; [300, 100, 30, 200], :orientation =&gt; 'horizontal')
+Gchart.bar(:data =&gt; [300, 100, 30, 200], :orientation =&gt; 'horizontal')
 &lt;/pre&gt;
 !http://chart.apis.google.com/chart?cht=bhs&amp;chs=300x200&amp;chd=s:9UGo(bars)!
 
 *multiple bars chart*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]])
+Gchart.bar(:data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=bvs&amp;chs=300x200&amp;chd=s:9UGo,Uo9C(stacked multiple bars)!
@@ -124,13 +125,13 @@ A sparkline chart has exactly the same parameters as a line chart. The only diff
 The problem is that by default the bars are stacked, so we need to set the colors:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], :bar_colors =&gt; 'FF0000,00FF00')
+Gchart.bar(:data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], :bar_colors =&gt; 'FF0000,00FF00')
 &lt;/pre&gt;
 
 If you prefer you can use this other syntax:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], :bar_colors =&gt; ['FF0000', '00FF00'])
+Gchart.bar(:data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], :bar_colors =&gt; ['FF0000', '00FF00'])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=bvs&amp;chs=300x200&amp;chd=s:9UGo,Uo9C&amp;chco=FF0000,00FF00(colors)!
@@ -138,9 +139,9 @@ If you prefer you can use this other syntax:
 The problem now, is that we can't see the first value of the second dataset since it's lower than the first value of the first dataset. Let's unstack the bars:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar( :data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], 
-              :bar_colors =&gt; 'FF0000,00FF00',
-              :stacked =&gt; false )
+Gchart.bar(:data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], 
+           :bar_colors =&gt; 'FF0000,00FF00',
+           :stacked =&gt; false )
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=bvg&amp;chs=300x200&amp;chd=s:9UGo,Uo9C&amp;chco=FF0000,00FF00(grouped bars)!
@@ -152,31 +153,31 @@ A bar chart can accept options to set the width of the bars, spacing between bar
 The Google API sets these options in the order of width, spacing, and group spacing, with both spacing values being optional. So, if you provide a string or array, provide them in that order:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6') # width of 25, spacing of 6
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6,12') # width of 25, spacing of 6, group spacing of 12
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; [25,6]) # width of 25, spacing of 6
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; 25) # width of 25
+Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6') # width of 25, spacing of 6
+Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; '25,6,12') # width of 25, spacing of 6, group spacing of 12
+Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; [25,6]) # width of 25, spacing of 6
+Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; 25) # width of 25
 &lt;/pre&gt;
   
 The hash lets you set these values directly, with the Google default values set for any options you don't include:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:width =&gt; 19})
-  Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:spacing =&gt; 10, :group_spacing =&gt; 12})
+Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:width =&gt; 19})
+Gchart.bar(:data =&gt; @data, :bar_width_and_spacing =&gt; {:spacing =&gt; 10, :group_spacing =&gt; 12})
 &lt;/pre&gt;
 
 
 *pie chart*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.pie(:data =&gt; [20, 35, 45])
+Gchart.pie(:data =&gt; [20, 35, 45])
 &lt;/pre&gt;
 !http://chart.apis.google.com/chart?cht=p&amp;chs=300x200&amp;chd=s:bv9(Pie Chart)!
 
 *3D pie chart*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.pie_3d(:data =&gt; [20, 35, 45])
+Gchart.pie_3d(:data =&gt; [20, 35, 45])
 &lt;/pre&gt;
 !http://chart.apis.google.com/chart?cht=p3&amp;chs=300x200&amp;chd=s:bv9(Pie Chart)!
 
@@ -192,7 +193,7 @@ Data set:
 * the seventh value specifies the area of A intersecting B intersecting C
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.venn(:data =&gt; [100, 80, 60, 30, 30, 30, 10])
+Gchart.venn(:data =&gt; [100, 80, 60, 30, 30, 30, 10])
 &lt;/pre&gt;
 !http://chart.apis.google.com/chart?cht=v&amp;chs=300x200&amp;chd=s:9wkSSSG(Venn)!
 
@@ -203,7 +204,7 @@ Data set:
 Supply two data sets, the first data set specifies x coordinates, the second set specifies y coordinates, the third set the data point size.
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.scatter(:data =&gt; [[1, 2, 3, 4, 5], [1, 2, 3, 4 ,5], [5, 4, 3, 2, 1]])
+Gchart.scatter(:data =&gt; [[1, 2, 3, 4, 5], [1, 2, 3, 4 ,5], [5, 4, 3, 2, 1]])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=s&amp;chs=300x200&amp;chd=s:MYkw9,MYkw9,9wkYM(scatter)!
@@ -215,7 +216,7 @@ Supply two data sets, the first data set specifies x coordinates, the second set
 Supply a single label that will be what the arrow points to. It only supports a solid fill for the background.
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
- Gchart.meter(:data =&gt; [70], :label =&gt; ['Flavor'])
+Gchart.meter(:data =&gt; [70], :label =&gt; ['Flavor'])
 &lt;/pre&gt;
 
 ---
@@ -223,7 +224,7 @@ Supply a single label that will be what the arrow points to. It only supports a
 *set a chart title*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:title =&gt; &quot;Recent Chart Sexyness&quot;, :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100])
+Gchart.bar(:title =&gt; &quot;Recent Chart Sexyness&quot;, :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=bvs&amp;chs=300x200&amp;chd=s:JSGM9MY9&amp;chtt=Recent+Chart+Sexyness(chart title)!
@@ -231,7 +232,7 @@ Supply a single label that will be what the arrow points to. It only supports a
 *set the title size*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:title =&gt; &quot;Recent Chart Sexyness&quot;, :title_size =&gt; 20, :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100])
+Gchart.bar(:title =&gt; &quot;Recent Chart Sexyness&quot;, :title_size =&gt; 20, :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=bvs&amp;chs=300x200&amp;chd=s:JSGM9MY9&amp;chtt=Recent+Chart+Sexyness&amp;chts=454545,20(title size)!
@@ -239,7 +240,7 @@ Supply a single label that will be what the arrow points to. It only supports a
 *set the title color*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar(:title =&gt; &quot;Recent Chart Sexyness&quot;, :title_color =&gt; 'FF0000', :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100])
+Gchart.bar(:title =&gt; &quot;Recent Chart Sexyness&quot;, :title_color =&gt; 'FF0000', :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=bvs&amp;chs=300x200&amp;chd=s:JSGM9MY9&amp;chtt=Recent+Chart+Sexyness&amp;chts=FF0000(Title color)!
@@ -247,9 +248,9 @@ Supply a single label that will be what the arrow points to. It only supports a
 *set the chart's size*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar( :title =&gt; &quot;Recent Chart Sexyness&quot;, 
-              :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100],
-              :size =&gt; '600x400')
+Gchart.bar(:title =&gt; &quot;Recent Chart Sexyness&quot;, 
+           :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100],
+           :size =&gt; '600x400')
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=bvs&amp;chs=600x400&amp;chd=s:JSGM9MY9&amp;chtt=Recent+Chart+Sexyness(size)!
@@ -257,9 +258,9 @@ Supply a single label that will be what the arrow points to. It only supports a
 *set the image background color*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar( :title =&gt; &quot;Matt's Mojo&quot;, 
-              :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
-              :background =&gt; 'FF9994')
+Gchart.bar(:title =&gt; &quot;Matt's Mojo&quot;, 
+           :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
+           :background =&gt; 'FF9994')
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?chf=bg,s,FF9994&amp;cht=bvs&amp;chs=300x200&amp;chd=s:JSGM9MY929w&amp;chtt=Matt's+Mojo(Background)!
@@ -267,9 +268,9 @@ Supply a single label that will be what the arrow points to. It only supports a
 *set the chart background color*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar( :title =&gt; &quot;Matt's Mojo&quot;, 
-              :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
-              :background =&gt; 'FF9994', :chart_background =&gt; '000000')
+Gchart.bar(:title =&gt; &quot;Matt's Mojo&quot;, 
+           :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
+           :background =&gt; 'FF9994', :chart_background =&gt; '000000')
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?chf=c,s,000000|bg,s,FF9994&amp;cht=bvs&amp;chs=300x200&amp;chd=s:JSGM9MY929w&amp;chtt=Matt's+Mojo(chart background)!
@@ -277,18 +278,18 @@ Supply a single label that will be what the arrow points to. It only supports a
 *Set bar/line colors*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar( :title =&gt; &quot;Matt's Mojo&quot;, 
-              :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
-              :bar_colors =&gt; '76A4FB',
-              :background =&gt; 'EEEEEE', :chart_background =&gt; 'CCCCCC')
+Gchart.bar(:title =&gt; &quot;Matt's Mojo&quot;, 
+           :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
+           :bar_colors =&gt; '76A4FB',
+           :background =&gt; 'EEEEEE', :chart_background =&gt; 'CCCCCC')
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?chf=c,s,CCCCCC|bg,s,EEEEEE&amp;cht=bvs&amp;chs=300x200&amp;chd=s:JSGM9MY929w&amp;chco=76A4FB&amp;chtt=Matt's+Mojo(bar colors)!
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :title =&gt; &quot;Matt's Mojo&quot;, 
-              :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
-              :line_colors =&gt; '76A4FB')
+Gchart.line(:title =&gt; &quot;Matt's Mojo&quot;, 
+            :data =&gt; [15, 30, 10, 20, 100, 20, 40, 100, 90, 100, 80],
+            :line_colors =&gt; '76A4FB')
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:JSGM9MY929w&amp;chco=76A4FB&amp;chtt=Matt's+Mojo(line colors)!
@@ -296,27 +297,27 @@ Supply a single label that will be what the arrow points to. It only supports a
 *legend / labels*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.bar( :title =&gt; &quot;Matt vs Rob&quot;,
-              :data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], 
-              :bar_colors =&gt; 'FF0000,00FF00',
-              :stacked =&gt; false, :size =&gt; '400x200',
-              :legend =&gt; [&quot;Matt's Mojo&quot;, &quot;Rob's Mojo&quot;] )
+Gchart.bar(:title =&gt; &quot;Matt vs Rob&quot;,
+           :data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], 
+           :bar_colors =&gt; 'FF0000,00FF00',
+           :stacked =&gt; false, :size =&gt; '400x200',
+           :legend =&gt; [&quot;Matt's Mojo&quot;, &quot;Rob's Mojo&quot;] )
 &lt;/pre&gt;
 !http://chart.apis.google.com/chart?cht=bvg&amp;chdl=Matt's+Mojo|Rob's+Mojo&amp;chs=400x200&amp;chd=s:9UGo,Uo9C&amp;chco=FF0000,00FF00&amp;chtt=Matt+vs+Rob(legend)!
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :title =&gt; &quot;Matt vs Rob&quot;,
-              :data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], 
-              :bar_colors =&gt; ['FF0000','00FF00'],
-              :stacked =&gt; false, :size =&gt; '400x200',
-              :legend =&gt; [&quot;Matt's Mojo&quot;, &quot;Rob's Mojo&quot;] )
+Gchart.line(:title =&gt; &quot;Matt vs Rob&quot;,
+            :data =&gt; [[300, 100, 30, 200], [100, 200, 300, 10]], 
+            :bar_colors =&gt; ['FF0000','00FF00'],
+            :stacked =&gt; false, :size =&gt; '400x200',
+            :legend =&gt; [&quot;Matt's Mojo&quot;, &quot;Rob's Mojo&quot;] )
 &lt;/pre&gt;
 !http://chart.apis.google.com/chart?cht=lc&amp;chdl=Matt's+Mojo|Rob's+Mojo&amp;chs=400x200&amp;chd=s:9UGo,Uo9C&amp;chco=FF0000,00FF00&amp;chtt=Matt+vs+Rob(line legend)!
 
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.pie_3d(  :title =&gt; 'ruby_fu', :size =&gt; '400x200',
-                  :data =&gt; [10, 45, 45], :labels =&gt; [&quot;DHH&quot;, &quot;Rob&quot;, &quot;Matt&quot;] )
+Gchart.pie_3d(:title =&gt; 'ruby_fu', :size =&gt; '400x200',
+              :data =&gt; [10, 45, 45], :labels =&gt; [&quot;DHH&quot;, &quot;Rob&quot;, &quot;Matt&quot;] )
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=p3&amp;chl=DHH|Rob|Matt&amp;chs=400x200&amp;chd=s:N99&amp;chtt=ruby_fu(labels)!
@@ -324,27 +325,27 @@ Supply a single label that will be what the arrow points to. It only supports a
 *Display axis labels*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x,y,r')
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x,y,r')
 &lt;/pre&gt;
 
 or you can use the other syntax:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; ['x','y','r'])
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; ['x','y','r'])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chxt=x,y,r&amp;chd=s:9UGoUo9C(axis with labels)!
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(  :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x',
-                :axis_labels =&gt; ['Jan|July|Jan|July|Jan'])
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x',
+            :axis_labels =&gt; ['Jan|July|Jan|July|Jan'])
 &lt;/pre&gt;
 
 or you can use the other syntax:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(  :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x',
-                :axis_labels =&gt; ['Jan','July','Jan','July','Jan'])
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x',
+            :axis_labels =&gt; ['Jan','July','Jan','July','Jan'])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chxl=0:|Jan|July|Jan|July|Jan&amp;chs=300x200&amp;chxt=x&amp;chd=s:9UGoUo9C(x labels)!
@@ -352,15 +353,15 @@ or you can use the other syntax:
 *multiple axis labels*
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(  :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x,r',
-                :axis_labels =&gt; ['Jan|July|Jan|July|Jan', '2005|2006|2007'])
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x,r',
+            :axis_labels =&gt; ['Jan|July|Jan|July|Jan', '2005|2006|2007'])
 &lt;/pre&gt;
 
 or 
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(  :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x,r',
-                :axis_labels =&gt; [['Jan','July','Jan','July','Jan'], ['2005','2006','2007']])
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :axis_with_labels =&gt; 'x,r',
+            :axis_labels =&gt; [['Jan','July','Jan','July','Jan'], ['2005','2006','2007']])
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chxl=0:|Jan|July|Jan|July|Jan|1:|2005|2006|2007&amp;chs=300x200&amp;chxt=x,r&amp;chd=s:9UGoUo9C(multiple axis labels)!
@@ -372,7 +373,7 @@ or
 I certainly didn't cover the entire API, if you want to add your own params:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :custom =&gt; 'chd=s:93zyvneTTOMJMLIJFHEAECFJGHDBFCFIERcgnpy45879,IJKNUWUWYdnswz047977315533zy1246872tnkgcaZQONHCECAAAAEII&amp;chls=3,6,3|1,1,0')
+Gchart.line(:custom =&gt; 'chd=s:93zyvneTTOMJMLIJFHEAECFJGHDBFCFIERcgnpy45879,IJKNUWUWYdnswz047977315533zy1246872tnkgcaZQONHCECAAAAEII&amp;chls=3,6,3|1,1,0')
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:93zyvneTTOMJMLIJFHEAECFJGHDBFCFIERcgnpy45879,IJKNUWUWYdnswz047977315533zy1246872tnkgcaZQONHCECAAAAEII&amp;chls=3,6,3|1,1,0(Custom)!
@@ -384,24 +385,38 @@ I certainly didn't cover the entire API, if you want to add your own params:
 You might prefer to save the chart instead of using the url, not a problem:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(:data =&gt; [0, 26], :format =&gt; 'file')
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'file')
 &lt;/pre&gt;
 
 You might want to specify the path and/or the filename used to save your chart: 
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(:data =&gt; [0, 26], :format =&gt; 'file', :filename =&gt; 'custom_filename.png')
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'file', :filename =&gt; 'custom_filename.png')
 &lt;/pre&gt;
 
 *Insert as an image tag*
 
-Because, I'm lazy, I also added a custom format:
+Because, I'm lazy, you can generate a full image tag, with support for the standard html options.
+
+&lt;pre syntax=&quot;ruby&quot;&gt;
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag')
+&lt;/pre&gt;
+
+&lt;pre syntax=&quot;ruby&quot;&gt;
+&lt;img src=&quot;http://chart.apis.google.com/chart?chs=300x200&amp;chd=s:A9&amp;cht=lc&quot; width=&quot;300&quot; height=&quot;200&quot; alt=&quot;Google Chart&quot; /&gt;
+&lt;/pre&gt;
+
+Here are a few more examples:
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line(:data =&gt; [0, 26], :format =&gt; 'img_tag')
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag')
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :id =&gt; &quot;sexy&quot;)
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :class =&gt; &quot;chart&quot;)
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :alt =&gt; &quot;Sexy Chart&quot;)
+Gchart.line(:data =&gt; [0, 26], :format =&gt; 'image_tag', :title =&gt; &quot;Sexy Chart&quot;)
 &lt;/pre&gt;
 
-&amp;lt;img src='http://chart.apis.google.com/chart?chs=300x200&amp;chd=s:A9&amp;cht=lc'/&amp;gt;
+Image dimensions will be automatically set based on your chart's size.
 
 ---
 
@@ -417,17 +432,17 @@ By default this library uses the simple encoding, if you need a different type o
 
 default / simple: chd=s:9UGoUo9C
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10] )
+  Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10] )
 &lt;/pre&gt;
 
 extended: chd=e:..VVGZqqVVqq..CI
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :encoding =&gt; 'extended' )
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :encoding =&gt; 'extended' )
 &lt;/pre&gt;
 
 text: chd=t:300,100,30,200,100,200,300,10
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :encoding =&gt; 'text' )
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :encoding =&gt; 'text' )
 &lt;/pre&gt; 
 
 (note that the text encoding doesn't use a max value and therefore should be under 100)
@@ -439,19 +454,19 @@ Simple and extended encoding support the max value option.
 The max value option is a simple way of scaling your graph. The data is converted in chart value with the highest chart value being the highest point on the graph. By default, the calculation is done for you. However you can specify your own maximum or not use a maximum at all.
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10] )
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10] )
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:9UGoUo9C(Title)!
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :max_value =&gt; 500 )
+Gchart.line(:data =&gt; [300, 100, 30, 200, 100, 200, 300, 10], :max_value =&gt; 500 )
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:kMDYMYkB(max 500)!
 
 &lt;pre syntax=&quot;ruby&quot;&gt;
-  Gchart.line( :data =&gt; [100, 20, 30, 20, 10, 14, 30, 10], :max_value =&gt; false )
+Gchart.line(:data =&gt; [100, 20, 30, 20, 10, 14, 30, 10], :max_value =&gt; false )
 &lt;/pre&gt;
 
 !http://chart.apis.google.com/chart?cht=lc&amp;chs=300x200&amp;chd=s:_UeUKOeK(real size)!
@@ -473,4 +488,5 @@ Comments are welcome. Send an email to &quot;Matt Aimonetti&quot;:mailto:mattaimonetti@gma
 h3. Contributors
 
 &quot;David Grandinetti&quot;:http://github.com/dbgrandi
-&quot;Toby Sterrett&quot;:http://github.com/takeo
\ No newline at end of file
+&quot;Toby Sterrett&quot;:http://github.com/takeo
+&quot;Patrick Crowley&quot;:http://github.com/mokolabs
\ No newline at end of file</diff>
      <filename>website/index.txt</filename>
    </modified>
    <modified>
      <diff>@@ -84,6 +84,7 @@ pre, code {
   color: #ff8;
   background-color: #111;
   padding: 2px 10px 2px 10px;
+  overflow: auto;
 }
 .comment { color: #aaa; font-style: italic; }
 .keyword { color: #eff; font-weight: bold; }</diff>
      <filename>website/stylesheets/screen.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>2c62833c3575cd800edc5b65b3bfacc3d167becb</id>
    </parent>
  </parents>
  <author>
    <name>Patrick</name>
    <email>patrick@moko.local</email>
  </author>
  <url>http://github.com/mattetti/googlecharts/commit/2b5480f1cdd51523f6099582909b41d286cc639a</url>
  <id>2b5480f1cdd51523f6099582909b41d286cc639a</id>
  <committed-date>2008-06-26T11:32:49-07:00</committed-date>
  <authored-date>2008-06-26T11:32:49-07:00</authored-date>
  <message>updated :format image tag output to use standard image tag attributes (width, height, id, class, alt, title); added documentation; fixed documentation styling bugs</message>
  <tree>0a9b86f075721c6291a28a544010c221d65c7870</tree>
  <committer>
    <name>Patrick</name>
    <email>patrick@moko.local</email>
  </committer>
</commit>
