]> git.ipfire.org Git - thirdparty/Chart.js.git/commitdiff
Remove unused xOffset property from the tooltip. Use the multiKeyBackground. Update... 1745/head
authorEvert Timberg <evert.timberg@gmail.com>
Sun, 6 Dec 2015 14:38:19 +0000 (09:38 -0500)
committerEvert Timberg <evert.timberg@gmail.com>
Sun, 6 Dec 2015 14:38:19 +0000 (09:38 -0500)
docs/00-Getting-Started.md
src/core/core.tooltip.js

index cd0970bd471b1003f3a14eb0253a93aaefebd2b1..2cbc720abdff921f44bbfe908072e594028eea84 100644 (file)
@@ -127,8 +127,7 @@ xPadding | Number | 6 | Padding to add on top and bottom of tooltip
 yPadding | Number | 6 | Padding to add on left and right of tooltip
 caretSize | Number | 5 | Size, in px, of the tooltip arrow
 cornerRadius | Number | 6 | Radius of tooltip corner curves
-xOffset | Number | 10 |
-multiKeyBackground | Color | "#fff" |
+multiKeyBackground | Color | "#fff" | Color to draw behind the colored boxes when multiple items are in the tooltip
  | | |
 callbacks | - | - |  V2.0 introduces callback functions as a replacement for the template engine in v1. The tooltip has the following callbacks for providing text. For all functions, 'this' will be the tooltip object create from the Chart.Tooltip constructor
 **Callback Functions** | | | All functions are called with the same arguments
index 47f196149736f0e9aa1a1ae4d355ba42fdd13a80..78add55db03fa0ea42d9917987d09faa74333518 100644 (file)
@@ -35,7 +35,6 @@
                xPadding: 6,
                caretSize: 5,
                cornerRadius: 6,
-               xOffset: 10,
                multiKeyBackground: '#fff',
                callbacks: {
                        // Args are: (tooltipItems, data)
@@ -98,7 +97,6 @@
                                        // Positioning
                                        xPadding: options.tooltips.xPadding,
                                        yPadding: options.tooltips.yPadding,
-                                       xOffset: options.tooltips.xOffset,
 
                                        // Body
                                        bodyColor: options.tooltips.bodyColor,
                                        // Draw Legend-like boxes if needed
                                        if (this._options.tooltips.mode != 'single') {
                                                // Fill a white rect so that colours merge nicely if the opacity is < 1
-                                               ctx.fillStyle = helpers.color('#FFFFFF').alpha(opacity).rgbaString();
+                                               ctx.fillStyle = helpers.color(vm.legendColorBackground).alpha(opacity).rgbaString();
                                                ctx.fillRect(xBase, yBase, vm.bodyFontSize, vm.bodyFontSize);
 
                                                // Border