Skip to content

Commit

Permalink
Merge pull request #177 from areski/master
Browse files Browse the repository at this point in the history
changes from Master
  • Loading branch information
areski authored Apr 22, 2024
2 parents 456c24f + b2ee006 commit ae9a263
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
*.py[cod]
env

# C extensions
*.so
Expand Down
2 changes: 1 addition & 1 deletion examples/demo_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -283,7 +283,7 @@
xdata = range(nb_element)
xdata = list(map(lambda x: start_time + x * 1000000000, xdata))
ydata = [i + random.randint(1, 10) for i in range(nb_element)]
ydata2 = map(lambda x: x * 2, ydata)
ydata2 = list(map(lambda x: x * 2, ydata))

tooltip_date = "%d %b %Y %H:%M:%S %p"
extra_serie = {"tooltip": {"y_start": "There are ", "y_end": " calls"},
Expand Down
2 changes: 1 addition & 1 deletion examples/multiBarChart_date.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
xdata = range(nb_element)
xdata = list(map(lambda x: start_time + x * 100000000, xdata))
ydata = [i + random.randint(1, 10) for i in range(nb_element)]
ydata2 = map(lambda x: x * 2, ydata)
ydata2 = list(map(lambda x: x * 2, ydata))

tooltip_date = "%d %b %Y %H:%M:%S %p"
extra_serie = {"tooltip": {"y_start": "There are ", "y_end": " calls"},
Expand Down

0 comments on commit ae9a263

Please sign in to comment.