Skip to content

Commit

Permalink
Added missing isDrawBordersEnabled getter
Browse files Browse the repository at this point in the history
  • Loading branch information
danielgindi committed Oct 31, 2016
1 parent 8045d64 commit 3a879e9
Showing 1 changed file with 12 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1153,15 +1153,25 @@ public void setDrawGridBackground(boolean enabled) {
}

/**
* Sets drawing the borders rectangle to true. If this is enabled, there is
* no point drawing the axis-lines of x- and y-axis.
* When enabled, the borders rectangle will be rendered.
* If this is enabled, there is no point drawing the axis-lines of x- and y-axis.
*
* @param enabled
*/
public void setDrawBorders(boolean enabled) {
mDrawBorders = enabled;
}

/**
* When enabled, the borders rectangle will be rendered.
* If this is enabled, there is no point drawing the axis-lines of x- and y-axis.
*
* @return
*/
public boolean isDrawBordersEnabled() {
return mDrawBorders;
}

/**
* When enabled, the values will be clipped to contentRect,
* otherwise they can bleed outside the content rect.
Expand Down

0 comments on commit 3a879e9

Please sign in to comment.