Skip to content

Commit

Permalink
fix: Rename b to visible
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 4, 2023
1 parent 78a0939 commit b17ae85
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion agatecharts/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ def plot(table, chart, filename=None, size=DEFAULT_SIZE, dpi=DEFAULT_DPI):

chart.plot(table, axes)

pyplot.grid(b=True, which='major', color='0.85', linestyle='-')
pyplot.grid(visible=True, which='major', color='0.85', linestyle='-')
axes.set_axisbelow(True)

# matplotlib won't accept Decimal for limit values
Expand Down
2 changes: 1 addition & 1 deletion agatecharts/tableset.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def plot(tableset, chart, filename=None, size=None, dpi=DEFAULT_DPI):

pyplot.title(key)

pyplot.grid(b=True, which='major', color='0.85', linestyle='-')
pyplot.grid(visible=True, which='major', color='0.85', linestyle='-')
axes.set_axisbelow(True)

# matplotlib won't accept Decimal for limit values
Expand Down

0 comments on commit b17ae85

Please sign in to comment.