Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion update_switcher_chart.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
progress.append(number)
dates.append(datetime.fromtimestamp(commit.authored_date))

pyplot.plot_date(dates, progress)
pyplot.plot_date(dates, progress, linestyle='-',marker='')
pyplot.ylim(ymin=0)
pyplot.grid()
pyplot.gcf().autofmt_xdate()
pyplot.gca().yaxis.set_major_formatter(PercentFormatter())
pyplot.title("Postęp tłumaczenia do dodatku przełącznika języków")
pyplot.savefig("language-switcher-progress.svg")