Skip to content

Commit

Permalink
fix: Fix reversing of reused range
Browse files Browse the repository at this point in the history
  • Loading branch information
jpmckinney committed Oct 4, 2023
1 parent 21b2b10 commit 27a67ac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion agatecharts/charts/bars.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ def plot(self, table, axes):
raise ValueError('Only Text, Number and Date data are supported for bar chart labels.')

series_count = len(self._value_column_names)
positions = range(len(label_column))
positions = list(range(len(label_column)))
colors = Qualitative()
legend_bars = []
bar_area = 0.65
Expand Down

0 comments on commit 27a67ac

Please sign in to comment.