This commit is contained in:
Olly Smith 2014-06-14 09:58:59 +01:00
parent 1f0abcd631
commit 4a67502b05
2 changed files with 5 additions and 2 deletions

View File

@ -1520,6 +1520,9 @@ Licensed under the BSD-2-Clause License.
left += sidx * (barWidth + this.options.barGap);
}
size = bottom - top;
if (this.options.verticalGridCondition && this.options.verticalGridCondition(row.x)) {
this.drawBar(this.left + idx * groupWidth, this.top, groupWidth, Math.abs(this.top - this.bottom), this.options.verticalGridColor, this.options.verticalGridOpacity, this.options.barRadius);
}
if (this.options.stacked) {
top -= lastTop;
}

4
morris.min.js vendored

File diff suppressed because one or more lines are too long