Skip to content

Commit

Permalink
enable explicitly setting the height of any row headings.
Browse files Browse the repository at this point in the history
  • Loading branch information
tmcgee committed Jun 21, 2017
1 parent 3a5aca8 commit 95d5853
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion widgets/Report.js
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ define([
var rowStyles = row.cells.label.styles;
if (rowHeading) {
var margin = rowHeading.margin || {};
var rowHeight = row.height + (margin.top || 0);
var rowHeight = (rowHeading.height || row.height) + (margin.top || 0);
if (rowHeading.border) {
this.addBorder(this.mixinDeep({
left: data.settings.margin.left,
Expand Down

0 comments on commit 95d5853

Please sign in to comment.