Merge pull request #3242 from Pikamander2/new_branch

Fix zero border width not working (issue #3241)
This commit is contained in:
Evert Timberg 2016-09-02 18:46:16 -04:00 committed by GitHub
commit 2268bef321

View File

@ -324,6 +324,7 @@ module.exports = function(Chart) {
ctx.lineJoin = itemOrDefault(legendItem.lineJoin, lineDefault.borderJoinStyle);
ctx.lineWidth = itemOrDefault(legendItem.lineWidth, lineDefault.borderWidth);
ctx.strokeStyle = itemOrDefault(legendItem.strokeStyle, globalDefault.defaultColor);
var isLineWidthZero = (itemOrDefault(legendItem.lineWidth, lineDefault.borderWidth) === 0);
if (ctx.setLineDash) {
// IE 9 and 10 do not support line dash
@ -343,7 +344,10 @@ module.exports = function(Chart) {
}
else {
// Draw box as legend symbol
if (!isLineWidthZero)
{
ctx.strokeRect(x, y, boxWidth, fontSize);
}
ctx.fillRect(x, y, boxWidth, fontSize);
}