@ -1692,7 +1692,10 @@
// placeholder.append('<div style="position:absolute;opacity:0.10;background-color:red;left:' + box.left + 'px;top:' + box.top + 'px;width:' + box.width + 'px;height:' + box.height + 'px"></div>') // debug
// placeholder.append('<div style="position:absolute;opacity:0.10;background-color:red;left:' + box.left + 'px;top:' + box.top + 'px;width:' + box.width + 'px;height:' + box.height + 'px"></div>') // debug
ctx . fillStyle = axis . options . color ;
ctx . fillStyle = axis . options . color ;
ctx . font = f . style + " " + f . variant + " " + f . weight + " " + f . size + "px '" + f . family + "'" ;
// Important: Don't use quotes around axis.font.family! Just around single
// font names like 'Times New Roman' that have a space in it, or if it includes a
// special character).
ctx . font = f . style + " " + f . variant + " " + f . weight + " " + f . size + "px " + f . family ;
ctx . textAlign = "start" ;
ctx . textAlign = "start" ;
// middle align the labels - top would be more
// middle align the labels - top would be more
// natural, but browsers can differ a pixel or two in
// natural, but browsers can differ a pixel or two in