Skip to content

Commit

Permalink
lineWidth property added
Browse files Browse the repository at this point in the history
  • Loading branch information
stevewirts committed Oct 21, 2015
1 parent 61948bd commit bb7f75d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
5 changes: 3 additions & 2 deletions fin-hypergrid.dev.html
Original file line number Diff line number Diff line change
Expand Up @@ -16064,7 +16064,7 @@

gc.beginPath();
gc.strokeStyle = lineColor;
gc.lineWidth = 1;
gc.lineWidth = this.resolveProperty('lineWidth');
var c, r, x, y, width, height;

//fixedrow horizontal grid lines
Expand Down Expand Up @@ -31935,7 +31935,6 @@
fixedRowBGSelColor: 'rgb(255, 220, 97)',

backgroundColor2: 'rgb(201, 201, 201)',
lineColor: 'rgb(199, 199, 199)',
voffset: 0,
scrollbarHoverOver: 'visible',
scrollbarHoverOff: 'hidden',
Expand All @@ -31947,6 +31946,8 @@
cellPadding: 5,
gridLinesH: true,
gridLinesV: true,
lineColor: 'rgb(199, 199, 199)',
lineWidth: 0.4,

defaultRowHeight: 20,
defaultFixedRowHeight: 20,
Expand Down
4 changes: 2 additions & 2 deletions fin-hypergrid.min.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion polymer/js/fin-hypergrid-renderer.js
Original file line number Diff line number Diff line change
Expand Up @@ -617,7 +617,7 @@ var config = {

gc.beginPath();
gc.strokeStyle = lineColor;
gc.lineWidth = 1;
gc.lineWidth = this.resolveProperty('lineWidth');
var c, r, x, y, width, height;

//fixedrow horizontal grid lines
Expand Down
3 changes: 2 additions & 1 deletion polymer/js/fin-hypergrid.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,6 @@
fixedRowBGSelColor: 'rgb(255, 220, 97)',

backgroundColor2: 'rgb(201, 201, 201)',
lineColor: 'rgb(199, 199, 199)',
voffset: 0,
scrollbarHoverOver: 'visible',
scrollbarHoverOff: 'hidden',
Expand All @@ -77,6 +76,8 @@
cellPadding: 5,
gridLinesH: true,
gridLinesV: true,
lineColor: 'rgb(199, 199, 199)',
lineWidth: 0.4,

defaultRowHeight: 20,
defaultFixedRowHeight: 20,
Expand Down

0 comments on commit bb7f75d

Please sign in to comment.