<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -57,6 +57,7 @@ The format of a single series object is as follows:
     lines: specific lines options,
     bars: specific bars options,
     points: specific points options,
+    hints: specific hints options,
     shadowSize: number
   }
 
@@ -402,6 +403,15 @@ Customizing the data series
     markerWidth: number
     markerColor: color (defaults to lineColor)
   }
+  
+  hints: {
+    showColorBox: boolean
+    showSeriesLabel: boolean
+    labelFormatter: fn: or leave it alone to get the defalt
+    hintFormatter: fn: or leave it alone to get the defalt
+    backgroundColor: color or null (for auto-detect)
+    backgroundOpacity: number
+  }
 
   colors: [ color1, color2, ... ]
 
@@ -450,6 +460,25 @@ compared against. For example, perhaps you want to show the temperature each
 day and delta the datapoint against the yearly average on that day (or
 against another city, etc).
 
+&quot;hints&quot; are essentially tooltips that get formatted according to the format
+function assigned to either an individual series or to all hints. The function
+should return a string. Here are the default formatters:
+
+     function defaultHintFormatter(x, y) {
+         return &quot;&lt;strong&gt;x:&lt;/strong&gt; &quot; + x.toFixed(2) +
+                &quot; &lt;strong&gt;y:&lt;/strong&gt; &quot; + y.toFixed(2);
+     }
+     
+     function defaultLabelFormatter(label) {
+         return &quot;&lt;span style='font-size:1.2em;'&gt;&quot; + label + &quot;&lt;/span&gt;&quot;;
+     }
+     
+'defaultHintFormatter' is the formatter for the actual datapoint.
+'defaultLabelFormatter' is the formatter for the series label. 'showColorBox'
+is whether the color of the series will appear in the tooltip like it does
+in the legend. 'showSeriesLabel' is whether the label of the series is inserted
+into the hint at all.
+
 
 Customizing the grid
 ====================</diff>
      <filename>API.txt</filename>
    </modified>
    <modified>
      <diff>@@ -1,3 +1,6 @@
+*** Giving up updating this changelog in favor of just following the 
+    commits on github. This file will be removed in the future.
+
 Flot 0.5
 --------
 </diff>
      <filename>NEWS.txt</filename>
    </modified>
    <modified>
      <diff>@@ -21,7 +21,8 @@ you take the one bundled with Flot as it contains a bugfix for drawing
 filled shapes) which is canvas emulation on Internet Explorer. You can
 include the excanvas script like this:
 
-  &lt;!--[if IE]&gt;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;excanvas.pack.js&quot;&gt;&lt;/script&gt;&lt;![endif]--&gt;
+  &lt;!--[if IE]&gt;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot;
+                      src=&quot;excanvas.pack.js&quot;&gt;&lt;/script&gt;&lt;![endif]--&gt;
 
 If it's not working on your development IE 6.0, check that it has
 support for VML which excanvas is relying on. It appears that some</diff>
      <filename>README.txt</filename>
    </modified>
    <modified>
      <diff>@@ -11,7 +11,6 @@ grid configuration
 
 selection
   - user should be able to cancel selection with escape
-  - select points
 
 interactive zooming
   - convenience zoom(x1, y1, x2, y2)? and zoomOut() (via zoom stack)?
@@ -30,10 +29,6 @@ labels
   - plan &quot;all points&quot; option
   - interactive &quot;label this point&quot; command
 
-interactive hover over
-  - fire event with value for points
-  - fire event with graph id for lines
-
 error margin indicators
   - for scientific/statistical purposes
 </diff>
      <filename>TODO</filename>
    </modified>
    <modified>
      <diff>@@ -5,7 +5,7 @@
     &lt;meta http-equiv=&quot;Content-Type&quot; content=&quot;text/html; charset=UTF-8&quot;&gt;
     &lt;title&gt;Flot Examples&lt;/title&gt;
     &lt;link href=&quot;interacting_files/layout.css&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot;&gt;
-    &lt;!--[if IE]&gt;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;excanvas.pack.js&quot;&gt;&lt;/script&gt;&lt;![endif]--&gt;
+    &lt;!--[if IE]&gt;&lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;../excanvas.pack.js&quot;&gt;&lt;/script&gt;&lt;![endif]--&gt;
     &lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;../jquery.js&quot;&gt;&lt;/script&gt;
     &lt;script language=&quot;javascript&quot; type=&quot;text/javascript&quot; src=&quot;../jquery.flot.js&quot;&gt;&lt;/script&gt;
  &lt;/head&gt;&lt;body&gt;
@@ -25,10 +25,12 @@ $(function () {
     for (var i = 0; i &lt; 14; i += 0.5)
         d2.push([i, Math.cos(i)]);
 
-    plot = $.plot($(&quot;#placeholder&quot;), [ { data:d1, label: &quot;test&quot;}, d2 ], { 
+    plot = $.plot($(&quot;#placeholder&quot;), [ { data: d1, label: &quot;Yellow&quot; },
+                                       { data: d2, label: &quot;Blue&quot; } ], { 
         hints: { show: true },
         points: { show: true }, 
         lines: { show: true },
+        legend: { position: 'sw' },
         grid: { 
           clickable: true,
           hoverable: true,
@@ -47,9 +49,6 @@ $(function () {
     $(&quot;#placeholder&quot;).bind(&quot;plotmousemove&quot;, function (e, pos) {
         if (!pos.selected) { return; }
         plot.highlightSelected( pos.selected );
-        x = pos.selected.x.toFixed(2);
-        y = pos.selected.y.toFixed(2);
-        $(&quot;#result&quot;).text('You hovered over (' + x +  ', ' + y + ')');
     });
 });
 &lt;/script&gt;</diff>
      <filename>examples/interacting.html</filename>
    </modified>
    <modified>
      <diff>@@ -103,8 +103,8 @@ BOTTOM_SIDE_BUFFER = 5;
                 showSeriesLabel: true,
                 labelFormatter: defaultLabelFormatter,
                 hintFormatter: defaultHintFormatter,
-                backgroundColor: null, // null means auto-detect
-                backgroundOpacity: 0.95 // set to 0 to avoid background
+                backgroundColor: &quot;black&quot;, // null means auto-detect
+                backgroundOpacity: 0.1 // set to 0 to avoid background
             },
             selection: {
                 mode: null, // one of null, &quot;x&quot;, &quot;y&quot; or &quot;xy&quot;</diff>
      <filename>jquery.flot.js</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>c0ae6e0fc2e4310a79fb630ba8215764b232cd1e</id>
    </parent>
  </parents>
  <author>
    <name>Ryan Funduk</name>
    <email>ryan.funduk@gmail.com</email>
  </author>
  <url>http://github.com/thenduks/flot/commit/b61d0af37e1a01a1982c57baa4c783e661732edd</url>
  <id>b61d0af37e1a01a1982c57baa4c783e661732edd</id>
  <committed-date>2008-07-28T06:37:26-07:00</committed-date>
  <authored-date>2008-07-28T06:37:26-07:00</authored-date>
  <message>Looks good, updated API and so on. Fixed the link in the interacting example to point to the correct excanvas file... Shocking is that this doesn't work in IE yet, bug fixing and such will get done for that eventually, feel free to help out with that.</message>
  <tree>941ccbfb928764821d5b439946aa4451c65b5a99</tree>
  <committer>
    <name>Ryan Funduk</name>
    <email>ryan.funduk@gmail.com</email>
  </committer>
</commit>
